-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.41 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
{
"name": "angry-panda/hello-world",
"description": "Basic \"Hello World\"",
"license": "MIT",
"type": "library",
"keywords": [
"example",
"sample",
"hello"
],
"authors": [
{
"name": "Rocky Kev",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"ramsey/devtools": "^2.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"AngryPanda\\HelloWorld\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AngryPanda\\Test\\HelloWorld\\": "tests/"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"ramsey/composer-repl": true,
"phpstan/extension-installer": true,
"ergebnis/composer-normalize": true,
"captainhook/plugin-composer": true,
"ramsey/devtools": true
},
"sort-packages": true
},
"extra": {
"captainhook": {
"force-install": true
},
"ramsey/conventional-commits": {
"configFile": "conventional-commits.json"
},
"ramsey/devtools": {
"command-prefix": "dev",
"memory-limit": "-1"
}
}
}