-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
49 lines (49 loc) · 1.28 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
{
"name": "ramsey/composer-repl",
"description": "A REPL for PHP built into Composer.",
"license": "MIT",
"type": "composer-plugin",
"keywords": [
"repl",
"psysh",
"shell"
],
"authors": [
{
"name": "Ben Ramsey",
"email": "[email protected]",
"homepage": "https://benramsey.com"
}
],
"require": {
"php": "^8.1",
"composer-plugin-api": "^2.0",
"ramsey/composer-repl-lib": "^1.2"
},
"require-dev": {
"captainhook/captainhook": "^5.15",
"captainhook/plugin-composer": "^5.3",
"ergebnis/composer-normalize": "^2.30",
"ramsey/conventional-commits": "^1.5",
"roave/security-advisories": "dev-latest"
},
"config": {
"allow-plugins": {
"captainhook/plugin-composer": true,
"ergebnis/composer-normalize": true
},
"sort-packages": true
},
"extra": {
"captainhook": {
"force-install": true
},
"class": "Ramsey\\Dev\\Repl\\Composer\\ReplPlugin",
"ramsey/conventional-commits": {
"configFile": "conventional-commits.json"
},
"ramsey/devtools": {
"command-prefix": "dev"
}
}
}