-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathcomposer.json
62 lines (62 loc) · 1.98 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
{
"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.2.0",
"azjezz/psl": "^2.3.1",
"jwage/changelog-generator": "^1.4.0",
"laminas/laminas-diactoros": "^2.24.0",
"lcobucci/clock": "^3.0.0",
"monolog/monolog": "^3.2.0",
"ocramius/package-versions": "^2.7.0",
"phly/keep-a-changelog": "^2.12.1",
"php-http/curl-client": "^2.2.1",
"php-http/discovery": "^1.14.3",
"php-http/httplug": "^2.3.0",
"psr/http-client": "^1.0.1",
"psr/http-message": "^1.0.1",
"psr/log": "^3.0.0",
"symfony/console": "^6.2.2"
},
"require-dev": {
"doctrine/coding-standard": "^11.0.0",
"php-standard-library/psalm-plugin": "^2.2.1",
"phpunit/phpunit": "^9.5.27",
"psalm/plugin-phpunit": "^0.18.4",
"roave/infection-static-analysis-plugin": "^1.26.0",
"squizlabs/php_codesniffer": "^3.7.1",
"vimeo/psalm": "^5.3.0"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"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"
}
}