├── LICENSE ├── README.md ├── bin └── build-php-extension ├── scripts ├── build-extension ├── clean-build-directory ├── configure-extension ├── helpers.sh ├── run-shell └── test-extension └── share ├── alpine.dockerfile ├── buildPhp.sh ├── gdbinit └── ubuntu.dockerfile /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuoraGmbH/build-php-extension/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuoraGmbH/build-php-extension/HEAD/README.md -------------------------------------------------------------------------------- /bin/build-php-extension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuoraGmbH/build-php-extension/HEAD/bin/build-php-extension -------------------------------------------------------------------------------- /scripts/build-extension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuoraGmbH/build-php-extension/HEAD/scripts/build-extension -------------------------------------------------------------------------------- /scripts/clean-build-directory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuoraGmbH/build-php-extension/HEAD/scripts/clean-build-directory -------------------------------------------------------------------------------- /scripts/configure-extension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuoraGmbH/build-php-extension/HEAD/scripts/configure-extension -------------------------------------------------------------------------------- /scripts/helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuoraGmbH/build-php-extension/HEAD/scripts/helpers.sh -------------------------------------------------------------------------------- /scripts/run-shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuoraGmbH/build-php-extension/HEAD/scripts/run-shell -------------------------------------------------------------------------------- /scripts/test-extension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuoraGmbH/build-php-extension/HEAD/scripts/test-extension -------------------------------------------------------------------------------- /share/alpine.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuoraGmbH/build-php-extension/HEAD/share/alpine.dockerfile -------------------------------------------------------------------------------- /share/buildPhp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuoraGmbH/build-php-extension/HEAD/share/buildPhp.sh -------------------------------------------------------------------------------- /share/gdbinit: -------------------------------------------------------------------------------- 1 | add-auto-load-safe-path /usr/local/bin/php 2 | -------------------------------------------------------------------------------- /share/ubuntu.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuoraGmbH/build-php-extension/HEAD/share/ubuntu.dockerfile --------------------------------------------------------------------------------