forked from statamic/eloquent-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.09 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": "statamic/eloquent-driver",
"description": "Allows you to store Statamic data in a database.",
"license": "MIT",
"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.1",
"statamic/cms": "^5.12"
},
"require-dev": {
"doctrine/dbal": "^3.8",
"laravel/pint": "^1.0",
"orchestra/testbench": "^8.0 || ^9.0.2",
"phpunit/phpunit": "^9.4 || ^10.0 || ^11.0"
},
"scripts": {
"test": "phpunit"
},
"config": {
"allow-plugins": {
"pixelfear/composer-dist-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}