-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 979 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
43
44
45
46
47
48
{
"name": "dreitier/semistatic",
"description": "semistatic - is a file-backed content manager for Laravel",
"keywords": [
"static",
"documentation",
"content-manager",
"cms",
"content",
"laravel",
"site",
"sitepress"
],
"license": "MIT",
"authors": [
{
"name": "Christopher Klein",
"email": "ckl@dreitier.com"
}
],
"require": {
"ext-fileinfo": "*",
"nesbot/carbon": ">=2.50.0",
"league/commonmark": "^2.4",
"laravel/framework": "^10.10",
"symfony/yaml": "^6.3"
},
"autoload": {
"psr-4": {
"Dreitier\\Semistatic\\": "src/Semistatic"
}
},
"autoload-dev": {
"psr-4": {
"Dreitier\\Semistatic\\": "tests/Semistatic"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"pestphp/pest": "^2.24"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}