forked from ryanmitchell/eloquent-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.03 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": "adaptdk/eloquent-driver",
"description": "Allows you to store Statamic data in a database.",
"autoload": {
"psr-4": {
"Statamic\\Eloquent\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"extra": {
"statamic": {
"name": "Eloquent Driver",
"description": "Allows you to store Statamic data in a database."
},
"laravel": {
"providers": [
"Statamic\\Eloquent\\ServiceProvider"
]
}
},
"require": {
"php": "^8.0",
"statamic/cms": "^3.3.51 || 3.4.*"
},
"require-dev": {
"doctrine/dbal": "^3.3",
"orchestra/testbench": "^6.7.0 || ^7.0",
"phpunit/phpunit": "^9.4"
},
"scripts": {
"test": "phpunit"
},
"config": {
"allow-plugins": {
"pixelfear/composer-dist-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}