-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.33 KB
/
Copy pathcomposer.json
File metadata and controls
49 lines (49 loc) · 1.33 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
{
"name": "bartlett/captainhook-bin-plugin",
"description": "Captain Hook Plugin to execute any binary dependencies if (and only if) packages are installed",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Laurent Laville"
}
],
"support": {
"issues": "https://github.com/llaville/captainhook-bin-plugin/issues",
"source": "https://github.com/llaville/captainhook-bin-plugin"
},
"require": {
"php": "^8.1",
"composer-runtime-api": "^2.0",
"captainhook/captainhook": "^5.28.4",
"composer/semver": "^3.0"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8",
"phar-io/phive": "^0.16.0"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Bartlett\\CaptainHookBinPlugin\\": "src/",
"Bartlett\\CaptainHookBinPluginTest\\": "tests/"
}
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
},
"optimize-autoloader": true,
"sort-packages": true
},
"extra": {
"bamarni-bin": {
"bin-links": true,
"forward-command": false,
"target-directory": "vendor-bin"
}
},
"scripts": {
"bin": "echo 'bin not installed'"
}
}