diff options
author | Remi Collet <remi@remirepo.net> | 2025-02-04 15:09:46 +0100 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2025-02-04 15:09:46 +0100 |
commit | 24e3c875d4652cee7292ef1d4b5cf6bd6016e614 (patch) | |
tree | 0e24a5b933ff57b2f42dbf5d33458421a622e922 /composer.json |
dup v7
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..b2bc179 --- /dev/null +++ b/composer.json @@ -0,0 +1,44 @@ +{ + "name": "sebastian/environment", + "description": "Provides functionality to handle HHVM/PHP environments", + "keywords": ["environment","hhvm","xdebug"], + "homepage": "https://github.com/sebastianbergmann/environment", + "license": "BSD-3-Clause", + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "support": { + "issues": "https://github.com/sebastianbergmann/environment/issues", + "security": "https://github.com/sebastianbergmann/environment/security/policy" + }, + "config": { + "platform": { + "php": "8.2.0" + }, + "optimize-autoloader": true, + "sort-packages": true + }, + "prefer-stable": true, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "suggest": { + "ext-posix": "*" + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "extra": { + "branch-alias": { + "dev-main": "7.2-dev" + } + } +} |