-
- Downloads
New upstream version 4.0.0
Showing
- .github/workflows/ci.yml 9 additions, 13 deletions.github/workflows/ci.yml
- .phive/phars.xml 3 additions, 3 deletions.phive/phars.xml
- .php-cs-fixer.dist.php 55 additions, 20 deletions.php-cs-fixer.dist.php
- .psalm/config.xml 2 additions, 0 deletions.psalm/config.xml
- ChangeLog.md 7 additions, 0 deletionsChangeLog.md
- LICENSE 1 addition, 1 deletionLICENSE
- SECURITY.md 25 additions, 4 deletionsSECURITY.md
- composer.json 8 additions, 4 deletionscomposer.json
- phpunit.xml 4 additions, 4 deletionsphpunit.xml
- src/Wizard.php 8 additions, 2 deletionssrc/Wizard.php
- tests/WizardTest.php 5 additions, 5 deletionstests/WizardTest.php
... | ... | @@ -9,19 +9,23 @@ |
"email": "sebastian@phpunit.de" | ||
} | ||
], | ||
"support": { | ||
"issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues", | ||
"security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy" | ||
}, | ||
"config": { | ||
"platform": { | ||
"php": "8.1.0" | ||
"php": "8.2.0" | ||
}, | ||
"optimize-autoloader": true, | ||
"sort-packages": true | ||
}, | ||
"prefer-stable": true, | ||
"require": { | ||
"php": ">=8.1" | ||
"php": ">=8.2" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^10.0" | ||
"phpunit/phpunit": "^11.0" | ||
}, | ||
"autoload": { | ||
"classmap": [ | ||
... | ... | @@ -30,7 +34,7 @@ |
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-main": "3.0-dev" | ||
"dev-main": "4.0-dev" | ||
} | ||
} | ||
} |
Please register or sign in to comment