forked from naneau/php-project-versioner
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add code analysis tools and fix issues
- Loading branch information
Showing
24 changed files
with
255 additions
and
454 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
/vendor/ | ||
composer.lock | ||
.phpunit.result.cache |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,55 @@ | ||
{ | ||
"name": "naneau/project-versioner", | ||
"name": "angrybytes/project-versioner", | ||
"description": "A tool to maintain project/sub-project versions based on Composer, file mtimes, etc.", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Maurice Fonk", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Angry Bytes BV", | ||
"email": "[email protected]", | ||
"homepage": "https://angrybytes.com/" | ||
} | ||
], | ||
|
||
"support": { | ||
"email": "[email protected]" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Naneau\\ProjectVersioner\\": "src/Naneau/ProjectVersioner/", | ||
"Naneau\\ProjectVersioner\\Test\\": "tests/Naneau/ProjectVersioner/Test" | ||
} | ||
}, | ||
|
||
"config": { | ||
"optimize-autoloader": true, | ||
"sort-packages": true | ||
}, | ||
"scripts": { | ||
"phpcheck": [ | ||
"./vendor/bin/parallel-lint src/", | ||
"./vendor/bin/phpstan analyse -l max --memory-limit=1G src/", | ||
"./vendor/bin/phpcs -p --standard=PSR2 --extensions=php src/" | ||
], | ||
"phpcbf":[ | ||
"./vendor/bin/phpcbf -p --standard=PSR2 --extensions=php src/" | ||
], | ||
"phpunit": [ | ||
"./vendor/bin/phpunit" | ||
] | ||
}, | ||
"minimum-stability": "stable", | ||
"require": { | ||
"ext-json": "*", | ||
"php": "7.2.* || 7.3.* || 7.4.*", | ||
"symfony/finder": "~4" | ||
"symfony/finder": "~4.4" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "~8" | ||
"jakub-onderka/php-console-highlighter": "^0.4.0", | ||
"jakub-onderka/php-parallel-lint": "^1.0", | ||
"phpstan/phpstan": "0.12.34", | ||
"phpunit/phpunit": "~8.5", | ||
"squizlabs/php_codesniffer": "^3.5" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.