New upstream version 2.0.0
No related branches found
No related tags found
Showing
- .github/workflows/ci.yml 34 additions, 43 deletions.github/workflows/ci.yml
- .gitignore 3 additions, 3 deletions.gitignore
- .phive/phars.xml 4 additions, 4 deletions.phive/phars.xml
- .php-cs-fixer.dist.php 112 additions, 15 deletions.php-cs-fixer.dist.php
- .psalm/baseline.xml 7 additions, 9 deletions.psalm/baseline.xml
- .psalm/config.xml 0 additions, 1 deletion.psalm/config.xml
- ChangeLog.md 13 additions, 0 deletionsChangeLog.md
- LICENSE 21 additions, 25 deletionsLICENSE
- README.md 5 additions, 0 deletionsREADME.md
- SECURITY.md 9 additions, 0 deletionsSECURITY.md
- build.xml 0 additions, 4 deletionsbuild.xml
- composer.json 4 additions, 4 deletionscomposer.json
- phpunit.xml 7 additions, 8 deletionsphpunit.xml
- src/CodeUnit.php 50 additions, 17 deletionssrc/CodeUnit.php
- src/CodeUnitCollection.php 14 additions, 24 deletionssrc/CodeUnitCollection.php
- src/CodeUnitCollectionIterator.php 5 additions, 6 deletionssrc/CodeUnitCollectionIterator.php
- src/FileUnit.php 12 additions, 4 deletionssrc/FileUnit.php
- src/Mapper.php 12 additions, 167 deletionssrc/Mapper.php
- tests/_fixture/function.php 9 additions, 4 deletionstests/_fixture/function.php
- tests/unit/ClassMethodUnitTest.php 9 additions, 10 deletionstests/unit/ClassMethodUnitTest.php
SECURITY.md
0 → 100644
... | ... | @@ -16,14 +16,14 @@ |
}, | ||
"prefer-stable": true, | ||
"require": { | ||
"php": ">=7.3" | ||
"php": ">=8.1" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^9.3" | ||
"phpunit/phpunit": "^10.0" | ||
}, | ||
"config": { | ||
"platform": { | ||
"php": "7.3.0" | ||
"php": "8.1.0" | ||
}, | ||
"optimize-autoloader": true, | ||
"sort-packages": true | ||
... | ... | @@ -44,7 +44,7 @@ |
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "1.0-dev" | ||
"dev-main": "2.0-dev" | ||
} | ||
} | ||
} |
Please register or sign in to comment