-
- Downloads
New upstream version 6.0.0
No related branches found
No related tags found
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/Context.php 4 additions, 4 deletionssrc/Context.php
- tests/ContextTest.php 6 additions, 7 deletionstests/ContextTest.php
| ... | ... | @@ -17,19 +17,23 @@ |
| "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.1.0" | ||
| "php": "8.2.0" | ||
| }, | ||
| "optimize-autoloader": true, | ||
| "sort-packages": true | ||
| }, | ||
| "require": { | ||
| "php": ">=8.1" | ||
| "php": ">=8.2" | ||
| }, | ||
| "require-dev": { | ||
| "phpunit/phpunit": "^10.0" | ||
| "phpunit/phpunit": "^11.0" | ||
| }, | ||
| "autoload": { | ||
| "classmap": [ | ||
| ... | ... | @@ -38,7 +42,7 @@ |
| }, | ||
| "extra": { | ||
| "branch-alias": { | ||
| "dev-main": "5.0-dev" | ||
| "dev-main": "6.0-dev" | ||
| } | ||
| } | ||
| } |
Please register or sign in to comment