├── .gitignore
├── web
├── index.php
├── assets
│ ├── img
│ │ ├── background.png
│ │ ├── glyphicons-halflings.png
│ │ └── glyphicons-halflings-white.png
│ ├── css
│ │ ├── bootstrap-responsive.min.css
│ │ └── bootstrap.min.css
│ └── js
│ │ └── bootstrap.min.js
└── .htaccess
├── composer.json
├── .ebextensions
├── database.config
├── composer.config
└── deployschema.sh
├── src
├── templates
│ ├── footer.twig
│ ├── index.twig
│ ├── header.twig
│ └── add.twig
├── db-connect.php
└── app.php
├── README.md
├── NOTICE.md
├── index.php
├── LICENSE.md
└── composer.lock
/.gitignore:
--------------------------------------------------------------------------------
1 | composer.phar
2 | vendor
3 | .elasticbeanstalk/
4 |
--------------------------------------------------------------------------------
/web/index.php:
--------------------------------------------------------------------------------
1 |
2 | Options -MultiViews
3 |
4 | RewriteEngine On
5 | RewriteCond %{REQUEST_FILENAME} !-f
6 | RewriteRule ^ index.php [L]
7 |
8 |
--------------------------------------------------------------------------------
/src/templates/footer.twig:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |