├── .gitignore ├── .scrutinizer.yml ├── .travis.yml ├── LICENSE ├── README.md ├── bin └── install-phalcon.sh ├── circle.yml ├── composer.json ├── composer.lock ├── phpunit.xml ├── shippable.yml └── tests ├── Phalcon └── ModuleTest.php └── bootstrap.php /.gitignore: -------------------------------------------------------------------------------- 1 | /.project 2 | /.settings 3 | /vendor -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techpivot/phalcon-ci-installer/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techpivot/phalcon-ci-installer/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techpivot/phalcon-ci-installer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techpivot/phalcon-ci-installer/HEAD/README.md -------------------------------------------------------------------------------- /bin/install-phalcon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techpivot/phalcon-ci-installer/HEAD/bin/install-phalcon.sh -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techpivot/phalcon-ci-installer/HEAD/circle.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techpivot/phalcon-ci-installer/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techpivot/phalcon-ci-installer/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techpivot/phalcon-ci-installer/HEAD/phpunit.xml -------------------------------------------------------------------------------- /shippable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techpivot/phalcon-ci-installer/HEAD/shippable.yml -------------------------------------------------------------------------------- /tests/Phalcon/ModuleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techpivot/phalcon-ci-installer/HEAD/tests/Phalcon/ModuleTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techpivot/phalcon-ci-installer/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------