├── .github ├── FUNDING.yml ├── SECURITY.md └── workflows │ └── build.yml ├── 7.0.Dockerfile ├── 7.1.Dockerfile ├── 7.2.Dockerfile ├── 7.3.Dockerfile ├── 7.4.Dockerfile ├── 8.0.Dockerfile ├── 8.1.Dockerfile ├── 8.2.Dockerfile ├── 8.3.Dockerfile ├── 8.4.Dockerfile ├── 8.5.Dockerfile ├── README.md ├── bin ├── generate-supported-extensions.php └── generate.php ├── depot.json ├── entrypoint.sh └── msmtprc /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: stayallive 2 | -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/php/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/php/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /7.0.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/php/HEAD/7.0.Dockerfile -------------------------------------------------------------------------------- /7.1.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/php/HEAD/7.1.Dockerfile -------------------------------------------------------------------------------- /7.2.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/php/HEAD/7.2.Dockerfile -------------------------------------------------------------------------------- /7.3.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/php/HEAD/7.3.Dockerfile -------------------------------------------------------------------------------- /7.4.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/php/HEAD/7.4.Dockerfile -------------------------------------------------------------------------------- /8.0.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/php/HEAD/8.0.Dockerfile -------------------------------------------------------------------------------- /8.1.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/php/HEAD/8.1.Dockerfile -------------------------------------------------------------------------------- /8.2.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/php/HEAD/8.2.Dockerfile -------------------------------------------------------------------------------- /8.3.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/php/HEAD/8.3.Dockerfile -------------------------------------------------------------------------------- /8.4.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/php/HEAD/8.4.Dockerfile -------------------------------------------------------------------------------- /8.5.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/php/HEAD/8.5.Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/php/HEAD/README.md -------------------------------------------------------------------------------- /bin/generate-supported-extensions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/php/HEAD/bin/generate-supported-extensions.php -------------------------------------------------------------------------------- /bin/generate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/php/HEAD/bin/generate.php -------------------------------------------------------------------------------- /depot.json: -------------------------------------------------------------------------------- 1 | {"id":"0z54945k98"} 2 | -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/php/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /msmtprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stayallive/php/HEAD/msmtprc --------------------------------------------------------------------------------