Skip to content

Commit 83ed5f7

Browse files
committed
update composer
1 parent a277809 commit 83ed5f7

2 files changed

Lines changed: 12 additions & 13 deletions

File tree

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.3.0
1+
2.4.0

composer.json

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,11 @@
2727
"require": {
2828
"php": ">=8.1"
2929
},
30-
"minimum-stability": "dev",
30+
"minimum-stability": "stable",
3131
"prefer-stable": true,
32-
"config": {
33-
"allow-plugins": {
34-
"dealerdirect/phpcodesniffer-composer-installer": true
35-
}
36-
},
3732
"require-dev": {
3833
"pdepend/pdepend": "^2.16",
39-
"phpunit/phpunit": "^13.1 || ^12.5 || ^11.5",
40-
"phpcompatibility/php-compatibility": "^10.0.0@dev"
34+
"phpunit/phpunit": "^11.5 || ^12.5 || ^13.2"
4135
},
4236
"autoload": {
4337
"psr-4": {
@@ -54,9 +48,14 @@
5448
"source": "https://github.com/tecnickcom/tc-lib-unicode-data"
5549
},
5650
"scripts": {
57-
"test": "XDEBUG_MODE=coverage ./vendor/bin/phpunit --stderr test",
58-
"cs-check": "./vendor/bin/mago --config ./mago.src.toml lint src && ./vendor/bin/mago --config ./mago.test.toml lint test",
59-
"cs-fix": "./vendor/bin/mago fmt src test",
60-
"analyse": "./vendor/bin/mago --config ./mago.src.toml analyze src && ./vendor/bin/mago --config ./mago.test.toml analyze test"
51+
"test": "@php -d xdebug.mode=coverage vendor/bin/phpunit --stderr test",
52+
"analyse": ["@analyse:src", "@analyse:test"],
53+
"analyse:src": "mago --config mago.src.toml analyze src",
54+
"analyse:test": "mago --config mago.test.toml analyze test",
55+
"cs-check": ["@cs-check:src", "@cs-check:test"],
56+
"cs-check:src": "mago --config mago.src.toml lint src",
57+
"cs-check:test": "mago --config mago.test.toml lint test",
58+
"cs-fix": "mago fmt src test",
59+
"qa": ["@cs-check", "@analyse", "@test"]
6160
}
6261
}

0 commit comments

Comments
 (0)