-
Notifications
You must be signed in to change notification settings - Fork 24
/
composer.json
42 lines (42 loc) · 1001 Bytes
/
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
{
"name": "statamic/ssg",
"type": "statamic-addon",
"description": "Generate static sites with Statamic.",
"autoload": {
"psr-4": {
"Statamic\\StaticSite\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"extra": {
"statamic": {
"name": "Static Site Generator",
"description": "Generate static sites with Statamic."
},
"laravel": {
"providers": [
"Statamic\\StaticSite\\ServiceProvider"
]
}
},
"require": {
"statamic/cms": "^5.0.0"
},
"require-dev": {
"orchestra/testbench": "^8.0 || ^9.0"
},
"config": {
"allow-plugins": {
"pixelfear/composer-dist-plugin": true
}
},
"suggest": {
"spatie/fork": "Required to generate pages concurrently (^0.0.4)."
},
"minimum-stability": "dev",
"prefer-stable": true
}