Skip to content

Commit

Permalink
update changelog: set 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Chemaclass committed Apr 19, 2023
1 parent 94eadc7 commit 343357a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 21 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# Changelog

### Unreleased
### 1.1.1
### 2023-04-19

- Deprecate `withPhpConfigDefault()` in favor of `defaultPhpConfig()`
- Extract the dependency resolver logic into a different repo `gacela-project/resolver`

### 1.1.0
### 2023-03-21
Expand Down
27 changes: 7 additions & 20 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,15 @@
"gacela-project/resolver": "^0.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.14",
"friendsofphp/php-cs-fixer": "^3.16",
"phpbench/phpbench": "^1.2",
"phpmetrics/phpmetrics": "^2.8",
"phpunit/phpunit": "^9.6",
"phpstan/phpstan": "^1.10",
"psalm/plugin-phpunit": "^0.18",
"symfony/console": "^5.4",
"symfony/var-dumper": "^5.4",
"veewee/composer-run-parallel": "^1.2",
"vimeo/psalm": "^5.7"
"vimeo/psalm": "^5.9"
},
"suggest": {
"gacela-project/phpstan-extension": "A set of phpstan rules for Gacela",
Expand Down Expand Up @@ -73,25 +72,13 @@
},
"scripts": {
"post-install-cmd": ".github/git-hooks/init.sh",

"ctal": [
"@static-clear-cache",
"@csfix",
"@test-all"
],
"static-clear-cache": "@parallel clear-cache-psalm clear-cache-phpstan",
"ctal": ["@static-clear-cache", "@csfix", "@test-all"],
"static-clear-cache": ["@clear-cache-psalm", "@clear-cache-phpstan"],
"clear-cache-psalm": "XDEBUG_MODE=off vendor/bin/psalm --clear-cache",
"clear-cache-phpstan": "XDEBUG_MODE=off vendor/bin/phpstan clear-result-cache",
"test-all": [
"@quality",
"@phpunit"
],
"quality": [
"@csrun",
"@psalm",
"@phpstan"
],
"phpunit": "@parallel test-unit test-integration test-feature",
"test-all": ["@quality", "@phpunit"],
"quality": ["@csrun", "@psalm", "@phpstan"],
"phpunit": ["@test-unit", "@test-integration", "@test-feature"],
"test-unit": "XDEBUG_MODE=off ./vendor/bin/phpunit --testsuite=unit",
"test-integration": "XDEBUG_MODE=off ./vendor/bin/phpunit --testsuite=integration",
"test-feature": "XDEBUG_MODE=off ./vendor/bin/phpunit --testsuite=feature",
Expand Down

0 comments on commit 343357a

Please sign in to comment.