diff options
author | Remi Collet <remi@remirepo.net> | 2025-02-04 15:21:14 +0100 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2025-02-04 15:21:14 +0100 |
commit | 269d05fc8a10a697b88562168b4124f9c2eacd6c (patch) | |
tree | f91bf3dcba834120de8a63ebb9f97c78ccab1c00 /composer.json |
dup v6
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..94e5be7 --- /dev/null +++ b/composer.json @@ -0,0 +1,48 @@ +{ + "name": "sebastian/recursion-context", + "description": "Provides functionality to recursively process PHP variables", + "homepage": "https://github.com/sebastianbergmann/recursion-context", + "license": "BSD-3-Clause", + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + } + ], + "support": { + "issues": "https://github.com/sebastianbergmann/recursion-context/issues", + "security": "https://github.com/sebastianbergmann/recursion-context/security/policy" + }, + "prefer-stable": true, + "config": { + "platform": { + "php": "8.2.0" + }, + "optimize-autoloader": true, + "sort-packages": true + }, + "require": { + "php": ">=8.2" + }, + "require-dev": { + "phpunit/phpunit": "^11.0" + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "extra": { + "branch-alias": { + "dev-main": "6.0-dev" + } + } +} |