-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.67 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.67 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
{
"name": "wyrihaximus/generative-composer-plugin-tooling",
"description": "\ud83d\udc26\u200d\ud83d\udd25 Generative Composer Plugin Tooling",
"license": "MIT",
"authors": [
{
"name": "Cees-Jan Kiewiet",
"email": "ceesjank@gmail.com"
}
],
"require": {
"php": "^8.4",
"composer-plugin-api": "^2",
"roave/better-reflection": "^6.69.0",
"wyrihaximus/list-classes-in-directory": "^1.7",
"wyrihaximus/simple-twig": "^2.2.1"
},
"require-dev": {
"wyrihaximus/makefiles": "^0.10.3",
"wyrihaximus/test-utilities": "^12.0.0"
},
"autoload": {
"psr-4": {
"WyriHaximus\\Composer\\GenerativePluginTooling\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WyriHaximus\\Broadcast\\": "tests/apps/broadcast/src/",
"WyriHaximus\\Tests\\Composer\\GenerativePluginTooling\\": "tests/"
}
},
"config": {
"allow-plugins": {
"composer-unused/composer-unused-plugin": true,
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"drupol/composer-packages": true,
"ergebnis/composer-normalize": true,
"icanhazstring/composer-unused": true,
"infection/extension-installer": true,
"mindplay/composer-locator": true,
"phpstan/extension-installer": true,
"wyrihaximus/broadcast": true,
"wyrihaximus/makefiles": true,
"wyrihaximus/test-utilities": true
},
"platform": {
"php": "8.4.13"
},
"sort-packages": true
},
"scripts": {
"post-install-cmd": [
"make on-install-or-update || true"
],
"post-update-cmd": [
"make on-install-or-update || true"
]
}
}