generated from spatie/package-skeleton-laravel
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.34 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.34 KB
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": "elsayed85/lara-showbox",
"description": "Showbox Api",
"keywords": [
"elsayed85",
"laravel",
"lara-showbox"
],
"homepage": "https://github.com/elsayed85/lara-showbox",
"license": "MIT",
"authors": [
{
"name": "Elsayed Kamal",
"email": "elsayedkamal581999@gmail.com",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"spatie/laravel-package-tools": "^1.14.0",
"illuminate/contracts": "^10.0"
},
"require-dev": {
"nunomaduro/collision": "^7.9"
},
"autoload": {
"psr-4": {
"Elsayed85\\ShowBox\\": "src/",
"Elsayed85\\ShowBox\\Database\\Factories\\": "database/factories/"
}
},
"autoload-dev": {
"psr-4": {
}
},
"scripts": {
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"Elsayed85\\ShowBox\\ShowBoxServiceProvider"
],
"aliases": {
"ShowBox": "Elsayed85\\ShowBox\\Facades\\ShowBox"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}