diff options
| author | Remi Collet <remi@remirepo.net> | 2026-01-30 15:48:18 +0100 |
|---|---|---|
| committer | Remi Collet <remi@php.net> | 2026-01-30 15:48:18 +0100 |
| commit | 368189d478740f10783b59d38a1d36c14a4fcfe3 (patch) | |
| tree | fa6e60a7aa203aea58b189f613b1ccf6060a8a7c /composer.json | |
dup v7
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..f37a207 --- /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.3.0" + }, + "optimize-autoloader": true, + "sort-packages": true + }, + "require": { + "php": ">=8.3" + }, + "require-dev": { + "phpunit/phpunit": "^12.0" + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "extra": { + "branch-alias": { + "dev-main": "7.0-dev" + } + } +} |
