Skip to content

Instantly share code, notes, and snippets.

@alfrekjv
Created February 16, 2016 23:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alfrekjv/0ac476f35310d5430a2b to your computer and use it in GitHub Desktop.
Save alfrekjv/0ac476f35310d5430a2b to your computer and use it in GitHub Desktop.
modules/Application
├── Classes
│   ├── ApiHelper.php
│   ├── BcryptHasher.php
│   ├── Bitly.php
│   ├── CronHelper.php
│   ├── EmailHelper.php
│   ├── MCAPI.php
│   ├── Payment
│   │   ├── DriverInterface.php
│   │   ├── Drivers
│   │   │   ├── OpenPay.php
│   │   │   ├── Paypal.php
│   │   │   └── Stripe.php
│   │   └── HTTPRequest.php
│   └── TokenHelper.php
├── Command
│   └── QueueCommand.php
├── Controller
│   ├── Cron.php
│   ├── Index.php
│   ├── Shared.php
│   └── Users.php
├── Module.php
├── Storage
│   ├── Base.php
│   └── Collections.php
└── resources
├── config
│   ├── local.config.php
│   ├── production.config.php
│   └── routes.yml
└── views
├── index
│   ├── about.html.php
│   ├── index.html.php
│   ├── pricing.html.php
│   └── terms.html.php
├── partials
│   └── invite-user-email.html.php
└── users
├── confirm.html.php
└── signup.html.php
12 directories, 30 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment