forked from simonridley/Gitamic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.06 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
{
"name": "simonhamp/gitamic",
"description": "A beautiful Git interface inside Statamic",
"license": "proprietary",
"type": "statamic-addon",
"authors": [
{
"name": "Simon Hamp",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"SimonHamp\\Gitamic\\": "src"
}
},
"extra": {
"statamic": {
"name": "Gitamic",
"description": "A beautiful Git interface in Statamic",
"editions": ["basic", "pro"]
},
"laravel": {
"providers": [
"SimonHamp\\Gitamic\\ServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"gitonomy/gitlib": "^1.2",
"illuminate/support": "^7.0 || ^8.0",
"statamic/cms": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"nunomaduro/collision": "^5.0",
"pestphp/pest": "^0.1.5"
},
"support": {
"email": "[email protected]"
}
}