forked from plank/laravel-metable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.26 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
47
48
{
"name": "plank/laravel-metable",
"description": "A package for attaching arbitrary data to Eloquent models",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Sean Fraser",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Plank\\Metable\\": "src/"
}
},
"require": {
"php": ">=7.3.0",
"ext-json": "*",
"illuminate/support": "^6.20.42|^8.22.1|^9.0",
"illuminate/database": "^6.20.42|^8.22.1|^9.0",
"phpoption/phpoption": "^1.8"
},
"require-dev": {
"symfony/symfony": "^5.4.1|^6.1",
"laravel/legacy-factories": "^1.0.4",
"orchestra/testbench": "^5.20|^6.23|^7.0",
"phpunit/phpunit": "^9.5.11",
"guzzlehttp/guzzle": "^7.2",
"guzzlehttp/promises": "^1.4",
"mockery/mockery": "^1.4.2",
"php-coveralls/php-coveralls": "^2.4.2"
},
"autoload-dev":{
"psr-4": {
"Plank\\Metable\\Tests\\" : "tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"Plank\\Metable\\MetableServiceProvider"
]
}
}
}