├── .gitignore ├── .scrutinizer.yml ├── .travis.yml ├── LICENSE ├── README.md ├── Vagrantfile ├── ansible ├── playbook.yml └── templates │ └── nginx.conf ├── behat.yml.dist ├── composer.json ├── docs └── mongo │ ├── MongoDB.ep │ └── MongoDB.png ├── features ├── bootstrap │ ├── AbstractContext.php │ ├── CustomInitializer.php │ ├── EventContext.php │ └── FeatureContext.php ├── cupom.feature ├── event.feature ├── login.feature └── ticket.feature ├── initializer.php ├── phpunit.xml.dist └── web ├── app.php ├── app_dev.php ├── apple-touch-icon.png ├── config.php ├── favicon.ico └── robots.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPeste/conticket/HEAD/.gitignore -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPeste/conticket/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPeste/conticket/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPeste/conticket/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPeste/conticket/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPeste/conticket/HEAD/Vagrantfile -------------------------------------------------------------------------------- /ansible/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPeste/conticket/HEAD/ansible/playbook.yml -------------------------------------------------------------------------------- /ansible/templates/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPeste/conticket/HEAD/ansible/templates/nginx.conf -------------------------------------------------------------------------------- /behat.yml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPeste/conticket/HEAD/behat.yml.dist -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPeste/conticket/HEAD/composer.json -------------------------------------------------------------------------------- /docs/mongo/MongoDB.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPeste/conticket/HEAD/docs/mongo/MongoDB.ep -------------------------------------------------------------------------------- /docs/mongo/MongoDB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPeste/conticket/HEAD/docs/mongo/MongoDB.png -------------------------------------------------------------------------------- /features/bootstrap/AbstractContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPeste/conticket/HEAD/features/bootstrap/AbstractContext.php -------------------------------------------------------------------------------- /features/bootstrap/CustomInitializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPeste/conticket/HEAD/features/bootstrap/CustomInitializer.php -------------------------------------------------------------------------------- /features/bootstrap/EventContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPeste/conticket/HEAD/features/bootstrap/EventContext.php -------------------------------------------------------------------------------- /features/bootstrap/FeatureContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPeste/conticket/HEAD/features/bootstrap/FeatureContext.php -------------------------------------------------------------------------------- /features/cupom.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPeste/conticket/HEAD/features/cupom.feature -------------------------------------------------------------------------------- /features/event.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPeste/conticket/HEAD/features/event.feature -------------------------------------------------------------------------------- /features/login.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPeste/conticket/HEAD/features/login.feature -------------------------------------------------------------------------------- /features/ticket.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPeste/conticket/HEAD/features/ticket.feature -------------------------------------------------------------------------------- /initializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPeste/conticket/HEAD/initializer.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPeste/conticket/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /web/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPeste/conticket/HEAD/web/app.php -------------------------------------------------------------------------------- /web/app_dev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPeste/conticket/HEAD/web/app_dev.php -------------------------------------------------------------------------------- /web/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPeste/conticket/HEAD/web/apple-touch-icon.png -------------------------------------------------------------------------------- /web/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPeste/conticket/HEAD/web/config.php -------------------------------------------------------------------------------- /web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPeste/conticket/HEAD/web/favicon.ico -------------------------------------------------------------------------------- /web/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PHPeste/conticket/HEAD/web/robots.txt --------------------------------------------------------------------------------