-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.23 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
{
"name": "duncanmcclean/guest-entries",
"description": "Perform CRUD operations in the front-end of your site.",
"license": "proprietary",
"autoload": {
"psr-4": {
"DuncanMcClean\\GuestEntries\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"DuncanMcClean\\GuestEntries\\Tests\\": "tests"
}
},
"extra": {
"statamic": {
"name": "Guest Entries",
"description": "Perform CRUD operations in the front-end of your site."
},
"laravel": {
"providers": [
"DuncanMcClean\\GuestEntries\\ServiceProvider"
]
}
},
"require": {
"php": "^8.2",
"statamic/cms": "^5.41"
},
"require-dev": {
"orchestra/testbench": "^8.28 || ^9.6.1",
"pestphp/pest": "^2.2",
"spatie/test-time": "^1.2",
"laravel/pint": "^1.18"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"pixelfear/composer-dist-plugin": true,
"pestphp/pest-plugin": true
}
}
}