https://github.com/forumone/docker-composer
Composer images with Prestissimo pre-installed
https://github.com/forumone/docker-composer
composer composer-images docker docker-image php prestissimo
Last synced: 2 months ago
JSON representation
Composer images with Prestissimo pre-installed
- Host: GitHub
- URL: https://github.com/forumone/docker-composer
- Owner: forumone
- License: mit
- Created: 2019-11-18T15:52:09.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2026-01-19T16:42:53.000Z (5 months ago)
- Last Synced: 2026-01-19T22:51:14.752Z (5 months ago)
- Topics: composer, composer-images, docker, docker-image, php, prestissimo
- Language: Dockerfile
- Size: 49.8 KB
- Stars: 0
- Watchers: 15
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# About this Image
Images built from this repository are parallel implementations of the Docker Hub's [`library/composer`](https://hub.docker.com/_/composer) image.
These images include a small utility, `install-php-extensions`, to simplify the task of installing common extensions. For example, to install SOAP, one only needs to add this to their Dockerfile:
```sh
# Install the core SOAP extension
RUN install-php-extensions soap
````
## Versions and Tags
* Supported PHP versions: 8.5, 8.4, 8.3, 8.2, 8.1
* Supported Composer versions: 2(latest-2.x), 2.9, 2.8, 2.7, 2.6, 2.5, 2.4, 2.3, 2.2
Tags are constructed using `${COMPOSER_VERSION}-php-${PHP_VERSION}`. For example, Composer 2.8 running on PHP 8.3 is `2.8-php-8.3`.
The `2-` tag will generally always represent the latest 2.x version of Composer.
## License
Like the [base Composer image](https://github.com/composer/docker) we use, this project is available under the MIT license. See [LICENSE](LICENSE) for more details.