-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
107 lines (107 loc) · 3.64 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "ramsey/devtools-lib",
"description": "The library behind ramsey/devtools, allowing for extension of the ramsey/devtools Composer plugin.",
"license": "MIT",
"type": "library",
"keywords": [
"development",
"tools"
],
"authors": [
{
"name": "Ben Ramsey",
"email": "ben@benramsey.com",
"homepage": "https://benramsey.com"
}
],
"require": {
"php": "^8.1",
"composer/composer": "^2.7",
"hamcrest/hamcrest-php": "^2.0",
"mockery/mockery": "^1.5.1",
"symfony/console": "^6.0 || ^7.0",
"symfony/filesystem": "^6.0 || ^7.0",
"symfony/process": "^6.0 || ^7.0"
},
"require-dev": {
"captainhook/captainhook": "^5.15",
"captainhook/plugin-composer": "^5.3",
"ergebnis/composer-normalize": "^2.30",
"madewithlove/license-checker": "^1.4",
"pds/skeleton": "^1.0",
"phly/keep-a-changelog": "^2.12",
"php-parallel-lint/php-console-highlighter": "^1.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-mockery": "^1.1",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^10.1",
"psalm/plugin-mockery": "^1.1",
"psalm/plugin-phpunit": "^0.18.4 || ^0.19.0",
"ramsey/coding-standard": "^2.2",
"ramsey/composer-repl": "^1.5",
"ramsey/conventional-commits": "^1.5",
"roave/security-advisories": "dev-latest",
"vimeo/psalm": "^5.8"
},
"suggest": {
"madewithlove/license-checker": "Allows use of the 'license' command",
"pds/skeleton": "Allows use of the 'lint:structure' command",
"phly/keep-a-changelog": "Allows use of the 'changelog' command",
"php-parallel-lint/php-parallel-lint": "Allows use of the 'lint:syntax' command",
"phpstan/phpstan": "Allows use of the 'analyze:phpstan' command",
"phpunit/phpunit": "Allows use of the 'test:*' commands",
"squizlabs/php_codesniffer": "Allows use of the 'lint:style' and 'lint:fix' commands",
"vimeo/psalm": "Allows use of the 'analyze:psalm' command"
},
"autoload": {
"psr-4": {
"Ramsey\\Dev\\Tools\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ramsey\\Test\\Dev\\Tools\\": "tests/"
}
},
"bin": [
"bin/devtools"
],
"config": {
"allow-plugins": {
"captainhook/plugin-composer": true,
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"php-http/discovery": true,
"phpstan/extension-installer": true,
"ramsey/composer-repl": true
},
"sort-packages": true
},
"extra": {
"captainhook": {
"force-install": true
},
"ramsey/conventional-commits": {
"configFile": "conventional-commits.json"
},
"ramsey/devtools": {
"commands": {
"lint:style": {
"script": [
"echo 'This is a test script executed from composer.json'",
"@myfoo",
"bin/devtools lint:structure",
"bin/devtools license check"
]
}
}
}
},
"scripts": {
"myfoo": "echo 'This is another test script executed from composer.json'",
"test": "bin/devtools test:all"
}
}