diff options
| author | Remi Collet <remi@remirepo.net> | 2026-01-30 15:44:47 +0100 |
|---|---|---|
| committer | Remi Collet <remi@php.net> | 2026-01-30 15:44:47 +0100 |
| commit | 27c4d51c0a0dcc9d76c8357328c8541c6e3af323 (patch) | |
| tree | 00e8fd0149495d192f12e5c1ce423b2a51c0cbbc /composer.json | |
dup v8
Diffstat (limited to 'composer.json')
| -rw-r--r-- | composer.json | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..ecd4b53 --- /dev/null +++ b/composer.json @@ -0,0 +1,52 @@ +{ + "name": "sebastian/global-state", + "description": "Snapshotting of global state", + "keywords": ["global state"], + "homepage": "https://www.github.com/sebastianbergmann/global-state", + "license": "BSD-3-Clause", + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "support": { + "issues": "https://github.com/sebastianbergmann/global-state/issues", + "security": "https://github.com/sebastianbergmann/global-state/security/policy" + }, + "prefer-stable": true, + "config": { + "platform": { + "php": "8.3.0" + }, + "optimize-autoloader": true, + "sort-packages": true + }, + "require": { + "php": ">=8.3", + "sebastian/object-reflector": "^5.0", + "sebastian/recursion-context": "^7.0" + }, + "require-dev": { + "ext-dom": "*", + "phpunit/phpunit": "^12.0" + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "autoload-dev": { + "classmap": [ + "tests/_fixture/" + ], + "files": [ + "tests/_fixture/SnapshotFunctions.php" + ] + }, + "extra": { + "branch-alias": { + "dev-main": "8.0-dev" + } + } +} |
