-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 1.92 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 1.92 KB
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
{
"name": "loophp/grumphp-license-task",
"description": "Provide a task for GrumPHP that check if the License file is valid.",
"license": "MIT",
"type": "library",
"keywords": [
"grumphp-task",
"license"
],
"authors": [
{
"name": "Pol Dellaiera",
"email": "pol.dellaiera@protonmail.com",
"homepage": "https://not-a-number.io",
"role": "author"
}
],
"support": {
"issues": "https://github.com/loophp/grumphp-license-task/issues",
"source": "https://github.com/loophp/grumphp-license-task",
"docs": "https://github.com/loophp/grumphp-license-task"
},
"funding": [
{
"type": "github",
"url": "https://github.com/drupol"
}
],
"require": {
"php": ">= 7.4",
"composer/spdx-licenses": "^1.5.5",
"ergebnis/license": "^1.1"
},
"require-dev": {
"ext-pcov": "*",
"drupol/phpcsfixer-configs-php": "^2",
"ergebnis/composer-normalize": "^2.28",
"friends-of-phpspec/phpspec-code-coverage": "^6.1",
"infection/infection": "^0.28.0",
"infection/phpspec-adapter": "^0.2",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpro/grumphp": "^2",
"phpspec/phpspec": "^7.0",
"phpstan/phpstan": "^2.0",
"vimeo/psalm": "^6"
},
"autoload": {
"psr-4": {
"loophp\\GrumphpLicenseTask\\": "./src/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"phpro/grumphp": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"scripts": {
"changelog-unreleased": "auto-changelog -c .auto-changelog -u",
"changelog-version": "auto-changelog -c .auto-changelog -v"
}
}