-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
53 lines (53 loc) · 1.25 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
{
"name": "fidry/makefile",
"description": "Utility to parse a Makefile and implement some convention rules.",
"license": "BSD-3-Clause",
"type": "library",
"keywords": [
"makefile"
],
"authors": [
{
"name": "Théo Fidry",
"email": "[email protected]"
}
],
"require": {
"php": "^8.3"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.4",
"ergebnis/composer-normalize": "^2.28",
"infection/infection": "^0.29",
"phpunit/phpunit": "^12.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Fidry\\Makefile\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Fidry\\Makefile\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"ergebnis/composer-normalize": true,
"infection/extension-installer": true
},
"sort-packages": true
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"forward-command": false
},
"branch-alias": {
"dev-main": "1.0.x-dev"
}
}
}