-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
42 lines (42 loc) · 1.05 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
{
"name": "tv2regionerne/statamic-private-api",
"autoload": {
"psr-4": {
"Tv2regionerne\\StatamicPrivateApi\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tv2regionerne\\StatamicPrivateApi\\Tests\\": "tests"
}
},
"require": {
"php": "^8.2",
"statamic/cms": "^4.0 || ^5.0"
},
"require-dev": {
"nunomaduro/collision": "^8.1",
"orchestra/testbench": "^9.0",
"pestphp/pest": "^2.4",
"pestphp/pest-plugin-watch": "^2.0",
"laravel/pint": "^1.13",
"larastan/larastan": "^2.9"
},
"extra": {
"statamic": {
"name": "Statamic Private Api",
"description": "Statamic Private Api addon"
},
"laravel": {
"providers": [
"Tv2regionerne\\StatamicPrivateApi\\ServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"pixelfear/composer-dist-plugin": true
}
}
}