-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.52 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
50
51
52
53
54
55
56
57
{
"name": "anisaronno/laravel-media-gallery",
"description": "Laravel Media Gallery",
"version": "0.4.1",
"license": "MIT",
"keywords": [
"laravel",
"media",
"gallery",
"WordPress",
"wedevs"
],
"authors": [
{
"name": "MD. Anichur Rahaman",
"email": "[email protected]",
"homepage": "https://anichur.com",
"role": "Author, Developer"
}
],
"homepage": "https://github.com/anisAronno/laravel-media-media",
"require": {
"php": "^7.4|^8.0",
"laravel/framework": "^8.0|^9.0|^10.0",
"anisaronno/laravel-media-helper": "*"
},
"require-dev": {
"orchestra/testbench": "^8.13",
"phpunit/phpunit": "^10.4"
},
"autoload": {
"psr-4": {
"AnisAronno\\MediaGallery\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AnisAronno\\MediaGallery\\Tests\\": "tests",
"Workbench\\App\\": "workbench/app/",
"Workbench\\Database\\Factories\\": "workbench/database/factories/",
"Workbench\\Database\\Seeders\\": "workbench/database/seeders/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-f": "vendor/bin/phpunit --filter"
},
"extra": {
"laravel": {
"providers": [
"AnisAronno\\MediaGallery\\MediaGalleryServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}