├── .gitignore ├── README.md ├── charge.php ├── composer.json ├── composer.lock ├── config └── db.php ├── css └── style.css ├── customers.php ├── index.php ├── js └── charge.js ├── lib └── pdo_db.php ├── models ├── Customer.php └── Transaction.php ├── paypage.sql ├── success.php └── transactions.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/php_stripe_paypage/HEAD/README.md -------------------------------------------------------------------------------- /charge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/php_stripe_paypage/HEAD/charge.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/php_stripe_paypage/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/php_stripe_paypage/HEAD/composer.lock -------------------------------------------------------------------------------- /config/db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/php_stripe_paypage/HEAD/config/db.php -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/php_stripe_paypage/HEAD/css/style.css -------------------------------------------------------------------------------- /customers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/php_stripe_paypage/HEAD/customers.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/php_stripe_paypage/HEAD/index.php -------------------------------------------------------------------------------- /js/charge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/php_stripe_paypage/HEAD/js/charge.js -------------------------------------------------------------------------------- /lib/pdo_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/php_stripe_paypage/HEAD/lib/pdo_db.php -------------------------------------------------------------------------------- /models/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/php_stripe_paypage/HEAD/models/Customer.php -------------------------------------------------------------------------------- /models/Transaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/php_stripe_paypage/HEAD/models/Transaction.php -------------------------------------------------------------------------------- /paypage.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/php_stripe_paypage/HEAD/paypage.sql -------------------------------------------------------------------------------- /success.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/php_stripe_paypage/HEAD/success.php -------------------------------------------------------------------------------- /transactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradtraversy/php_stripe_paypage/HEAD/transactions.php --------------------------------------------------------------------------------