-
Notifications
You must be signed in to change notification settings - Fork 42
/
composer.json
49 lines (49 loc) · 1.27 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
49
{
"name": "plank/laravel-metable",
"description": "A package for attaching arbitrary data to Eloquent models",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Sean Fraser",
"email": "sean@plankdesign.com"
}
],
"autoload": {
"psr-4": {
"Plank\\Metable\\": "src/"
}
},
"require": {
"php": ">=8.1",
"ext-json": "*",
"illuminate/support": "^10.10|^11.0",
"illuminate/database": "^10.10|^11.0",
"phpoption/phpoption": "^1.8"
},
"require-dev": {
"symfony/symfony": "^6.1|^7.0",
"laravel/legacy-factories": "^1.0.4",
"orchestra/testbench": "^8.0|^9.0",
"phpunit/phpunit": "^10.5",
"guzzlehttp/guzzle": "^7.2",
"guzzlehttp/promises": "^1.4",
"mockery/mockery": "^1.4.2",
"nesbot/carbon" : "^2.62.1",
"php-coveralls/php-coveralls": "^2.7.0"
},
"autoload-dev":{
"psr-4": {
"Plank\\Metable\\Tests\\" : "tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"Plank\\Metable\\MetableServiceProvider"
]
}
}
}