Skip to content

Commit

Permalink
Merge pull request #7 from zamoroka/composer-2.3
Browse files Browse the repository at this point in the history
drop old symfony/process support
  • Loading branch information
zamoroka authored Apr 21, 2022
2 parents a6d0eaa + 67c81ae commit 1ba3f11
Show file tree
Hide file tree
Showing 8 changed files with 1,571 additions and 453 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

_This file has been auto-generated from the contents of changelog.json_

## 1.0.0

### Feature

* drop PHP <7.4 and symfony/process <4.2 support [issues/6]

Links: [src](https://github.com/vaimo/composer-changelogs/tree/1.0.0) [diff](https://github.com/vaimo/composer-changelogs/compare/0.17.1...1.0.0)

## 0.17.1 (2021-02-24)

### Fix
Expand Down Expand Up @@ -413,4 +421,4 @@ Links: [src](https://github.com/vaimo/composer-changelogs/tree/0.1.1) [diff](htt
* allow Sphinx documentation file to be generated from changelog contents ('changelog:generate' command)
* generate changelog for root package on install/update

Links: [src](https://github.com/vaimo/composer-changelogs/tree/0.1.0) [diff](https://github.com/vaimo/composer-changelogs/compare/451d290bfed9a87b59afc6f980827bf307d38e6e...0.1.0)
Links: [src](https://github.com/vaimo/composer-changelogs/tree/0.1.0) [diff](https://github.com/vaimo/composer-changelogs/compare/451d290bfed9a87b59afc6f980827bf307d38e6e...0.1.0)
4 changes: 2 additions & 2 deletions bin/analyse-dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ source ${script_root}/lib/output.sh
package="vaimo/composer-changelogs-local"

if [ "${1}" != "current" ] ; then
versions="5.3.9 5.4.45 5.5.38 5.6.40 7.0.33 7.1.32 7.2.22 7.3.25 7.4.13 8.0.0"
versions="7.4.13 8.0.0 8.1.1"
else
versions=$(php -r 'echo phpversion();'|cut -d '-' -f1)
fi
Expand Down Expand Up @@ -222,4 +222,4 @@ is_production_dependency()

analyse_deps "${package}" "${package_root}/.config"
done
)
)
7 changes: 6 additions & 1 deletion changelog.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
"possible to generate change-logs in other formats as well (when needed) and to do automatic releases based on",
"added change-log records. More on how to use it: https://github.com/vaimo/composer-changelogs"
],
"1.0.0": {
"feature": [
"drop PHP <7.4 and symfony/process <4.2 support [issues/6]"
]
},
"0.17.1": {
"fix": [
"bootstrap command throwing an error in every possible use case, rendering the command unusable"
Expand Down Expand Up @@ -282,4 +287,4 @@
"generate changelog for root package on install/update"
]
}
}
}
12 changes: 8 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,29 @@
"license": "MIT",
"description": "Provide information about package changes based on changelog files that are bundled with releases; provide tools for generating documentation files from changelog sources",
"require": {
"php": ">=5.3.0",
"php": ">=7.4.0",
"ext-json": "*",
"composer-plugin-api": "^1.0 || ^2.0",
"mustache/mustache": "^v2.12.0",
"seld/jsonlint": "^1.7.1",
"camspiers/json-pretty": "^1.0.2"
"camspiers/json-pretty": "^1.0.2",
"symfony/process": ">=4.2"
},
"require-dev": {
"composer/composer": "^1.0 || ^2.0",
"vaimo/composer-changelogs-proxy": "1.0.0",
"squizlabs/php_codesniffer": "^2.9.2",
"squizlabs/php_codesniffer": "^3.6.2",
"phpcompatibility/php-compatibility": "^9.1.1",
"phpmd/phpmd": "^2.6.0",
"phpunit/phpunit": "^4.8.36",
"sebastian/phpcpd": "^1.4.3"
},
"config": {
"platform": {
"php": "5.3.9"
"php": "7.4.13"
},
"allow-plugins": {
"vaimo/composer-changelogs-proxy": true
}
},
"support": {
Expand Down
Loading

0 comments on commit 1ba3f11

Please sign in to comment.