-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathcomposer.json
63 lines (63 loc) · 2.02 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "laminas/automatic-releases",
"type": "project",
"description": "Application that eases release management in the Laminas organisation through GitHub actions",
"license": "BSD-3-Clause",
"require": {
"php": "~8.3.12",
"azjezz/psl": "^3.0.2",
"jwage/changelog-generator": "^1.4.0",
"laminas/laminas-diactoros": "^2.26.0",
"lcobucci/clock": "^3.3.1",
"monolog/monolog": "^3.7.0",
"ocramius/package-versions": "^2.9.0",
"phly/keep-a-changelog": "^2.12.1",
"php-http/curl-client": "^2.3.2",
"php-http/discovery": "^1.20.0",
"php-http/httplug": "^2.4.1",
"psr/http-client": "^1.0.3",
"psr/http-message": "^1.1",
"psr/log": "^3.0.2",
"symfony/console": "^6.4.12"
},
"require-dev": {
"doctrine/coding-standard": "^12.0.0",
"php-standard-library/psalm-plugin": "^2.2.1",
"phpunit/phpunit": "^9.6.12",
"psalm/plugin-phpunit": "^0.19.0",
"roave/infection-static-analysis-plugin": "^1.32.0",
"squizlabs/php_codesniffer": "^3.7.2",
"vimeo/psalm": "^5.15.0"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": false
}
},
"autoload": {
"psr-4": {
"Laminas\\AutomaticReleases\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Laminas\\AutomaticReleases\\Test\\Unit\\": "test/unit"
}
},
"scripts": {
"check": [
"@cs-check",
"@static-analysis",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"static-analysis": "psalm --shepherd --stats",
"update-baseline": "psalm --update-baseline",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
}
}