forked from laminas/laminas-dependency-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.36 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
{
"name": "laminas/laminas-dependency-plugin",
"description": "Replace zendframework and zfcampus packages with their Laminas Project equivalents.",
"type": "composer-plugin",
"license": "BSD-3-Clause",
"config": {
"sort-packages": true
},
"require": {
"php": "^5.6 || ^7.0",
"composer-plugin-api": "^1.1"
},
"require-dev": {
"composer/composer": "^1.9",
"dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
"phpcompatibility/php-compatibility": "^9.3",
"phpunit/phpunit": "^8.4",
"roave/security-advisories": "dev-master",
"webimpress/coding-standard": "^1.0"
},
"autoload": {
"psr-4": {
"Laminas\\DependencyPlugin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LaminasTest\\DependencyPlugin\\": "test/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev",
"dev-develop": "1.1.x-dev"
},
"class": "Laminas\\DependencyPlugin\\DependencyRewriterPlugin"
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
}
}