├── .gitignore ├── README.md ├── Vagrantfile ├── doc ├── 00-primer-compiling-php.md ├── 01-running-tests.md └── 02-debug-php-extension.md ├── packer ├── http │ └── ks.cfg ├── packer.json └── scripts │ ├── cleanup.sh │ ├── minimize.sh │ ├── sshd.sh │ ├── vagrant.sh │ └── vmtools.sh └── salt ├── minion └── roots ├── pillar └── dev │ ├── configs.sls │ └── top.sls └── salt └── dev ├── _files ├── nginx │ ├── conf │ │ └── nginx.conf │ └── vhosts │ │ └── dev.conf ├── php │ └── opcache.ini ├── postgresql │ ├── pg_hba.conf │ └── postgresql.conf ├── sudo │ └── vagrant └── web │ └── phpinfo.php ├── composer └── init.sls ├── core └── init.sls ├── lcov └── init.sls ├── nginx └── init.sls ├── php └── init.sls ├── postgresql └── init.sls └── top.sls /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcousens/packer-php7-dev/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcousens/packer-php7-dev/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcousens/packer-php7-dev/HEAD/Vagrantfile -------------------------------------------------------------------------------- /doc/00-primer-compiling-php.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcousens/packer-php7-dev/HEAD/doc/00-primer-compiling-php.md -------------------------------------------------------------------------------- /doc/01-running-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcousens/packer-php7-dev/HEAD/doc/01-running-tests.md -------------------------------------------------------------------------------- /doc/02-debug-php-extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcousens/packer-php7-dev/HEAD/doc/02-debug-php-extension.md -------------------------------------------------------------------------------- /packer/http/ks.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcousens/packer-php7-dev/HEAD/packer/http/ks.cfg -------------------------------------------------------------------------------- /packer/packer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcousens/packer-php7-dev/HEAD/packer/packer.json -------------------------------------------------------------------------------- /packer/scripts/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcousens/packer-php7-dev/HEAD/packer/scripts/cleanup.sh -------------------------------------------------------------------------------- /packer/scripts/minimize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcousens/packer-php7-dev/HEAD/packer/scripts/minimize.sh -------------------------------------------------------------------------------- /packer/scripts/sshd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcousens/packer-php7-dev/HEAD/packer/scripts/sshd.sh -------------------------------------------------------------------------------- /packer/scripts/vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcousens/packer-php7-dev/HEAD/packer/scripts/vagrant.sh -------------------------------------------------------------------------------- /packer/scripts/vmtools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcousens/packer-php7-dev/HEAD/packer/scripts/vmtools.sh -------------------------------------------------------------------------------- /salt/minion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcousens/packer-php7-dev/HEAD/salt/minion -------------------------------------------------------------------------------- /salt/roots/pillar/dev/configs.sls: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /salt/roots/pillar/dev/top.sls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcousens/packer-php7-dev/HEAD/salt/roots/pillar/dev/top.sls -------------------------------------------------------------------------------- /salt/roots/salt/dev/_files/nginx/conf/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcousens/packer-php7-dev/HEAD/salt/roots/salt/dev/_files/nginx/conf/nginx.conf -------------------------------------------------------------------------------- /salt/roots/salt/dev/_files/nginx/vhosts/dev.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcousens/packer-php7-dev/HEAD/salt/roots/salt/dev/_files/nginx/vhosts/dev.conf -------------------------------------------------------------------------------- /salt/roots/salt/dev/_files/php/opcache.ini: -------------------------------------------------------------------------------- 1 | zend_extension=opcache.so 2 | -------------------------------------------------------------------------------- /salt/roots/salt/dev/_files/postgresql/pg_hba.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcousens/packer-php7-dev/HEAD/salt/roots/salt/dev/_files/postgresql/pg_hba.conf -------------------------------------------------------------------------------- /salt/roots/salt/dev/_files/postgresql/postgresql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcousens/packer-php7-dev/HEAD/salt/roots/salt/dev/_files/postgresql/postgresql.conf -------------------------------------------------------------------------------- /salt/roots/salt/dev/_files/sudo/vagrant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcousens/packer-php7-dev/HEAD/salt/roots/salt/dev/_files/sudo/vagrant -------------------------------------------------------------------------------- /salt/roots/salt/dev/_files/web/phpinfo.php: -------------------------------------------------------------------------------- 1 |