diff options
author | Remi Collet <remi@remirepo.net> | 2024-02-05 10:47:13 +0100 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2024-02-05 10:47:13 +0100 |
commit | e295d841bf99332d1fdeb3c75fbce197743ff7a9 (patch) | |
tree | e9c0097741fc07f1510c47f8bafeb7e788a7bf72 /composer.json |
dup v6
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..0459582 --- /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.1.0" + }, + "optimize-autoloader": true, + "sort-packages": true + }, + "prefer-stable": true, + "require": { + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" + }, + "suggest": { + "ext-posix": "*" + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" + } + } +} |