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.
Merge pull request #4 from AngryBytes/feat/php80
PHP 8.0 support
- Loading branch information
Showing
4 changed files
with
75 additions
and
58 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
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,19 +1,31 @@ | ||
# Changelog | ||
|
||
## 1.2.0 | ||
|
||
### PHP support | ||
|
||
- Dropped support for PHP `7.2`. | ||
- Added support for PHP `8.0`. | ||
|
||
## 1.1.0 | ||
|
||
### PHP support | ||
* Dropped support for PHP `7.1` and lower. | ||
* Added support for PHP `7.2`, `7.3` and `7.4`. | ||
|
||
- Dropped support for PHP `7.1` and lower. | ||
- Added support for PHP `7.2`, `7.3` and `7.4`. | ||
|
||
### 3rd party updates | ||
* Updated `symfony/finder` to version `4.4`. | ||
|
||
- Updated `symfony/finder` to version `4.4`. | ||
|
||
## 1.0.4 | ||
* Updated `symfony/finder` to version `3.3`. | ||
|
||
- Updated `symfony/finder` to version `3.3`. | ||
|
||
## 1.0.3 | ||
* Re-added the missing `Naneau\ProjectVersioner\Versioner::has($directory)` method. | ||
|
||
- Re-added the missing `Naneau\ProjectVersioner\Versioner::has($directory)` method. | ||
|
||
## 1.0.2 | ||
* Added `Naneau\ProjectVersioner\Reader\ComposerJson` for reading versions from a composer.json file. | ||
|
||
- Added `Naneau\ProjectVersioner\Reader\ComposerJson` for reading versions from a composer.json file. |
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,55 +1,52 @@ | ||
{ | ||
"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" | ||
] | ||
"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]" | ||
}, | ||
"minimum-stability": "stable", | ||
"require": { | ||
"ext-json": "*", | ||
"php": "7.2.* || 7.3.* || 7.4.*", | ||
"symfony/finder": "~4.4" | ||
}, | ||
"require-dev": { | ||
"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" | ||
{ | ||
"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/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.3.* || 7.4.* || 8.0.*", | ||
"symfony/finder": "~4.4" | ||
}, | ||
"require-dev": { | ||
"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