-
Notifications
You must be signed in to change notification settings - Fork 26
/
composer.json
36 lines (36 loc) · 1015 Bytes
/
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
{
"name": "comcast/php-legal-licenses",
"description": "A utility to generate a Licenses file containing the full license text for every dependency in your project for legal purposes.",
"type": "library",
"keywords": [
"licenses",
"license",
"legal",
"utility",
"binary"
],
"homepage": "https://github.com/Comcast/php-legal-licenses",
"license": "Apache-2.0",
"authors": [{
"name": "Adam Marshall",
"email": "adam_marshall2@comcast.com",
"role": "lead"
}],
"support": {
"issues": "https://github.com/Comcast/php-legal-licenses/issues"
},
"prefer-stable": true,
"require": {
"ext-json": "*",
"symfony/console": ">=5.4.46 < 6.0.0 || >=6.4.14 < 7.0.0 || >=7.1.7",
"symfony/process": ">=5.4.46 < 6.0.0 || >=6.4.14 < 7.0.0 || >=7.1.7"
},
"bin": [
"bin/php-legal-licenses"
],
"autoload": {
"classmap": [
"src/"
]
}
}