Skip to content

Instantly share code, notes, and snippets.

@schmunk42
Created February 10, 2015 19:35
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 schmunk42/9083e9a5188cb0a2dac5 to your computer and use it in GitHub Desktop.
Save schmunk42/9083e9a5188cb0a2dac5 to your computer and use it in GitHub Desktop.
Phundament directory structure
$ tree
├── CHANGELOG.md
├── Dockerfile
├── LICENSE.md
├── README.md
├── Vagrantfile
├── assets
│   ├── AppAsset.php
│   ├── less
│   └── web
├── build
├── codeception.yml
├── commands
│   └── AppController.php
├── composer.json
├── composer.lock
├── config
│   ├── bootstrap.php
│   ├── env.php
│   └── main.php
├── controllers
│   └── SiteController.php
├── data
├── docs
├── fig.yml
├── migrations
├── models
│   └── ContactForm.php
├── modules
│   └── admin
├── runtime
├── tests
├── views
│   ├── layouts
│   │   ├── _modal.php
│   │   ├── container.php
│   │   └── main.php
│   ├── site
│   │   ├── about.php
│   │   ├── contact.php
│   │   ├── error.php
│   │   └── index.php
│   └── user
│   ├── registration
│   │   ├── finish.php
│   │   ├── register.php
│   │   └── resend.php
│   └── security
│   └── login.php
├── web
│   ├── assets
│   ├── css
│   │   └── site.css
│   ├── favicon.ico
│   ├── index.php
│   └── robots.txt
├── widgets
│   └── Alert.php
├── yii
└── yii.bat
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment