├── .ebextensions ├── composer.config ├── database.config └── deployschema.sh ├── .gitignore ├── LICENSE.md ├── NOTICE.md ├── README.md ├── composer.json ├── composer.lock ├── index.php ├── src ├── app.php ├── db-connect.php └── templates │ ├── add.twig │ ├── footer.twig │ ├── header.twig │ └── index.twig └── web ├── .htaccess ├── assets ├── css │ ├── bootstrap-responsive.min.css │ └── bootstrap.min.css ├── img │ ├── background.png │ ├── glyphicons-halflings-white.png │ └── glyphicons-halflings.png └── js │ └── bootstrap.min.js └── index.php /.ebextensions/composer.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eb-demo-php-simple-app/HEAD/.ebextensions/composer.config -------------------------------------------------------------------------------- /.ebextensions/database.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eb-demo-php-simple-app/HEAD/.ebextensions/database.config -------------------------------------------------------------------------------- /.ebextensions/deployschema.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eb-demo-php-simple-app/HEAD/.ebextensions/deployschema.sh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | composer.phar 2 | vendor 3 | .elasticbeanstalk/ 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eb-demo-php-simple-app/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eb-demo-php-simple-app/HEAD/NOTICE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eb-demo-php-simple-app/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eb-demo-php-simple-app/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eb-demo-php-simple-app/HEAD/composer.lock -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eb-demo-php-simple-app/HEAD/index.php -------------------------------------------------------------------------------- /src/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eb-demo-php-simple-app/HEAD/src/app.php -------------------------------------------------------------------------------- /src/db-connect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eb-demo-php-simple-app/HEAD/src/db-connect.php -------------------------------------------------------------------------------- /src/templates/add.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eb-demo-php-simple-app/HEAD/src/templates/add.twig -------------------------------------------------------------------------------- /src/templates/footer.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eb-demo-php-simple-app/HEAD/src/templates/footer.twig -------------------------------------------------------------------------------- /src/templates/header.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eb-demo-php-simple-app/HEAD/src/templates/header.twig -------------------------------------------------------------------------------- /src/templates/index.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eb-demo-php-simple-app/HEAD/src/templates/index.twig -------------------------------------------------------------------------------- /web/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eb-demo-php-simple-app/HEAD/web/.htaccess -------------------------------------------------------------------------------- /web/assets/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eb-demo-php-simple-app/HEAD/web/assets/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /web/assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eb-demo-php-simple-app/HEAD/web/assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /web/assets/img/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eb-demo-php-simple-app/HEAD/web/assets/img/background.png -------------------------------------------------------------------------------- /web/assets/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eb-demo-php-simple-app/HEAD/web/assets/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /web/assets/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eb-demo-php-simple-app/HEAD/web/assets/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /web/assets/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eb-demo-php-simple-app/HEAD/web/assets/js/bootstrap.min.js -------------------------------------------------------------------------------- /web/index.php: -------------------------------------------------------------------------------- 1 |