-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
47 lines (47 loc) · 1.17 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
{
"name": "edalzell/forma",
"license": "mit",
"type": "statamic-addon",
"require": {
"php": "^8.0",
"laravel/framework": "^10.0 || ^11.0",
"statamic/cms": "^4.0 || ^5.0",
"stillat/proteus": "^4.0"
},
"require-dev": {
"mockery/mockery": "^1.3.1",
"nunomaduro/collision": "^7.0 || ^8.0",
"phpunit/phpunit": "^10.0 || ^11.0",
"orchestra/testbench": "^8.0 || ^9.0"
},
"description": "Give control panel access to your addon's config",
"authors": [
{
"name": "Erin Dalzell",
"email": "[email protected]",
"homepage": "https://silentz.co",
"role": "Founder"
}
],
"autoload": {
"psr-4": {
"Edalzell\\Forma\\": "src"
}
},
"extra": {
"statamic": {
"name": "Forma",
"description": "Create addon config page in the CP"
},
"laravel": {
"providers": [
"Edalzell\\Forma\\ServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"pixelfear/composer-dist-plugin": true
}
}
}