├── README.md ├── assets ├── fonts │ ├── gotham-bold-italic.ttf │ ├── gotham-bold.ttf │ ├── gotham-book-italic.ttf │ ├── gotham-book.ttf │ ├── gotham-light-italic.ttf │ └── gotham-light.ttf ├── helpers │ ├── Stripe.php │ ├── Stripe │ │ ├── Account.php │ │ ├── ApiConnectionError.php │ │ ├── ApiError.php │ │ ├── ApiRequestor.php │ │ ├── ApiResource.php │ │ ├── ApplicationFee.php │ │ ├── AttachedObject.php │ │ ├── AuthenticationError.php │ │ ├── Balance.php │ │ ├── BalanceTransaction.php │ │ ├── Card.php │ │ ├── CardError.php │ │ ├── Charge.php │ │ ├── Coupon.php │ │ ├── Customer.php │ │ ├── Error.php │ │ ├── Event.php │ │ ├── InvalidRequestError.php │ │ ├── Invoice.php │ │ ├── InvoiceItem.php │ │ ├── List.php │ │ ├── Object.php │ │ ├── Plan.php │ │ ├── Recipient.php │ │ ├── SingletonApiResource.php │ │ ├── Stripe.php │ │ ├── Subscription.php │ │ ├── Token.php │ │ ├── Transfer.php │ │ ├── Util.php │ │ └── Util │ │ │ └── Set.php │ ├── data │ │ └── ca-certificates.crt │ ├── functions.php │ └── mail.php ├── icons │ ├── ionicons.eot │ ├── ionicons.svg │ ├── ionicons.ttf │ └── ionicons.woff ├── images │ ├── favicon.png │ └── profile.jpg ├── scripts │ ├── main.js │ └── stripe.php └── styles │ ├── main.css │ ├── normalize.css │ └── responsive.css ├── content ├── clients │ ├── index.php │ └── some-client.txt ├── index.php └── invoices │ ├── 0001975.txt │ └── index.php ├── index.php ├── screenshot.jpg └── settings.php /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/README.md -------------------------------------------------------------------------------- /assets/fonts/gotham-bold-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/fonts/gotham-bold-italic.ttf -------------------------------------------------------------------------------- /assets/fonts/gotham-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/fonts/gotham-bold.ttf -------------------------------------------------------------------------------- /assets/fonts/gotham-book-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/fonts/gotham-book-italic.ttf -------------------------------------------------------------------------------- /assets/fonts/gotham-book.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/fonts/gotham-book.ttf -------------------------------------------------------------------------------- /assets/fonts/gotham-light-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/fonts/gotham-light-italic.ttf -------------------------------------------------------------------------------- /assets/fonts/gotham-light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/fonts/gotham-light.ttf -------------------------------------------------------------------------------- /assets/helpers/Stripe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/helpers/Stripe.php -------------------------------------------------------------------------------- /assets/helpers/Stripe/Account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/helpers/Stripe/Account.php -------------------------------------------------------------------------------- /assets/helpers/Stripe/ApiConnectionError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/helpers/Stripe/ApiConnectionError.php -------------------------------------------------------------------------------- /assets/helpers/Stripe/ApiError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/helpers/Stripe/ApiError.php -------------------------------------------------------------------------------- /assets/helpers/Stripe/ApiRequestor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/helpers/Stripe/ApiRequestor.php -------------------------------------------------------------------------------- /assets/helpers/Stripe/ApiResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/helpers/Stripe/ApiResource.php -------------------------------------------------------------------------------- /assets/helpers/Stripe/ApplicationFee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/helpers/Stripe/ApplicationFee.php -------------------------------------------------------------------------------- /assets/helpers/Stripe/AttachedObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/helpers/Stripe/AttachedObject.php -------------------------------------------------------------------------------- /assets/helpers/Stripe/AuthenticationError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/helpers/Stripe/AuthenticationError.php -------------------------------------------------------------------------------- /assets/helpers/Stripe/Balance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/helpers/Stripe/Balance.php -------------------------------------------------------------------------------- /assets/helpers/Stripe/BalanceTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/helpers/Stripe/BalanceTransaction.php -------------------------------------------------------------------------------- /assets/helpers/Stripe/Card.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/helpers/Stripe/Card.php -------------------------------------------------------------------------------- /assets/helpers/Stripe/CardError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/helpers/Stripe/CardError.php -------------------------------------------------------------------------------- /assets/helpers/Stripe/Charge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/helpers/Stripe/Charge.php -------------------------------------------------------------------------------- /assets/helpers/Stripe/Coupon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/helpers/Stripe/Coupon.php -------------------------------------------------------------------------------- /assets/helpers/Stripe/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/helpers/Stripe/Customer.php -------------------------------------------------------------------------------- /assets/helpers/Stripe/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/helpers/Stripe/Error.php -------------------------------------------------------------------------------- /assets/helpers/Stripe/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/helpers/Stripe/Event.php -------------------------------------------------------------------------------- /assets/helpers/Stripe/InvalidRequestError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/helpers/Stripe/InvalidRequestError.php -------------------------------------------------------------------------------- /assets/helpers/Stripe/Invoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/helpers/Stripe/Invoice.php -------------------------------------------------------------------------------- /assets/helpers/Stripe/InvoiceItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/helpers/Stripe/InvoiceItem.php -------------------------------------------------------------------------------- /assets/helpers/Stripe/List.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/helpers/Stripe/List.php -------------------------------------------------------------------------------- /assets/helpers/Stripe/Object.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/helpers/Stripe/Object.php -------------------------------------------------------------------------------- /assets/helpers/Stripe/Plan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/helpers/Stripe/Plan.php -------------------------------------------------------------------------------- /assets/helpers/Stripe/Recipient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/helpers/Stripe/Recipient.php -------------------------------------------------------------------------------- /assets/helpers/Stripe/SingletonApiResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/helpers/Stripe/SingletonApiResource.php -------------------------------------------------------------------------------- /assets/helpers/Stripe/Stripe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/helpers/Stripe/Stripe.php -------------------------------------------------------------------------------- /assets/helpers/Stripe/Subscription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/helpers/Stripe/Subscription.php -------------------------------------------------------------------------------- /assets/helpers/Stripe/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/helpers/Stripe/Token.php -------------------------------------------------------------------------------- /assets/helpers/Stripe/Transfer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/helpers/Stripe/Transfer.php -------------------------------------------------------------------------------- /assets/helpers/Stripe/Util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/helpers/Stripe/Util.php -------------------------------------------------------------------------------- /assets/helpers/Stripe/Util/Set.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/helpers/Stripe/Util/Set.php -------------------------------------------------------------------------------- /assets/helpers/data/ca-certificates.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/helpers/data/ca-certificates.crt -------------------------------------------------------------------------------- /assets/helpers/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/helpers/functions.php -------------------------------------------------------------------------------- /assets/helpers/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/helpers/mail.php -------------------------------------------------------------------------------- /assets/icons/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/icons/ionicons.eot -------------------------------------------------------------------------------- /assets/icons/ionicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/icons/ionicons.svg -------------------------------------------------------------------------------- /assets/icons/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/icons/ionicons.ttf -------------------------------------------------------------------------------- /assets/icons/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/icons/ionicons.woff -------------------------------------------------------------------------------- /assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/images/favicon.png -------------------------------------------------------------------------------- /assets/images/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/images/profile.jpg -------------------------------------------------------------------------------- /assets/scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/scripts/main.js -------------------------------------------------------------------------------- /assets/scripts/stripe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/scripts/stripe.php -------------------------------------------------------------------------------- /assets/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/styles/main.css -------------------------------------------------------------------------------- /assets/styles/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/styles/normalize.css -------------------------------------------------------------------------------- /assets/styles/responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/assets/styles/responsive.css -------------------------------------------------------------------------------- /content/clients/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content/clients/some-client.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/content/clients/some-client.txt -------------------------------------------------------------------------------- /content/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content/invoices/0001975.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/content/invoices/0001975.txt -------------------------------------------------------------------------------- /content/invoices/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/index.php -------------------------------------------------------------------------------- /screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/screenshot.jpg -------------------------------------------------------------------------------- /settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jptksc/invoice/HEAD/settings.php --------------------------------------------------------------------------------