-
- Downloads
New upstream version 4.0.0
No related branches found
No related tags found
Showing
- .github/CONTRIBUTING.md 75 additions, 0 deletions.github/CONTRIBUTING.md
- .github/workflows/ci.yml 14 additions, 8 deletions.github/workflows/ci.yml
- .phive/phars.xml 4 additions, 4 deletions.phive/phars.xml
- .php-cs-fixer.dist.php 23 additions, 4 deletions.php-cs-fixer.dist.php
- ChangeLog.md 7 additions, 0 deletionsChangeLog.md
- LICENSE 1 addition, 1 deletionLICENSE
- README.md 1 addition, 1 deletionREADME.md
- composer.json 4 additions, 4 deletionscomposer.json
- phpstan.neon 1 addition, 11 deletionsphpstan.neon
- phpunit.xml 2 additions, 1 deletionphpunit.xml
- src/Counter.php 0 additions, 1 deletionsrc/Counter.php
- src/Exception/NegativeValueException.php 0 additions, 16 deletionssrc/Exception/NegativeValueException.php
- src/LineCountingVisitor.php 4 additions, 2 deletionssrc/LineCountingVisitor.php
- src/LinesOfCode.php 0 additions, 21 deletionssrc/LinesOfCode.php
- tests/unit/LinesOfCodeTest.php 0 additions, 36 deletionstests/unit/LinesOfCodeTest.php
.github/CONTRIBUTING.md
0 → 100644
... | ... | @@ -17,15 +17,15 @@ |
}, | ||
"prefer-stable": true, | ||
"require": { | ||
"php": ">=8.2", | ||
"php": ">=8.3", | ||
"nikic/php-parser": "^5.0" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^11.0" | ||
"phpunit/phpunit": "^12.0" | ||
}, | ||
"config": { | ||
"platform": { | ||
"php": "8.2" | ||
"php": "8.3" | ||
}, | ||
"optimize-autoloader": true, | ||
"sort-packages": true | ||
... | ... | @@ -37,7 +37,7 @@ |
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-main": "3.0-dev" | ||
"dev-main": "4.0-dev" | ||
} | ||
} | ||
} |
Please register or sign in to comment