summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2025-02-04 15:27:18 +0100
committerRemi Collet <remi@php.net>2025-02-04 15:27:18 +0100
commit07ba68fdc69cd6cd51360c39424aa34c2c28a4cd (patch)
tree11fe88a2e4b3987a59c826b193cdc44925665003 /composer.json
dup v7
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json52
1 files changed, 52 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..95fb1f0
--- /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.2.0"
+ },
+ "optimize-autoloader": true,
+ "sort-packages": true
+ },
+ "require": {
+ "php": ">=8.2",
+ "sebastian/object-reflector": "^4.0",
+ "sebastian/recursion-context": "^6.0"
+ },
+ "require-dev": {
+ "ext-dom": "*",
+ "phpunit/phpunit": "^11.0"
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "autoload-dev": {
+ "classmap": [
+ "tests/_fixture/"
+ ],
+ "files": [
+ "tests/_fixture/SnapshotFunctions.php"
+ ]
+ },
+ "extra": {
+ "branch-alias": {
+ "dev-main": "7.0-dev"
+ }
+ }
+}