-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 878 Bytes
/
composer.json
File metadata and controls
43 lines (43 loc) · 878 Bytes
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
{
"name": "etchfoda/app-manager",
"description": "app-manager",
"type": "library",
"require": {
"php": "^7.4|^8.0.2|^8.0.2",
"ext-dom": "*",
"ext-zip": "*",
"ext-mbstring": "*",
"ext-json": "*",
"etchfoda/php-whitelist-check": "^1.0",
"graham-campbell/manager": "^4.7",
"composer/composer": "^2.1"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.5",
"laravel/dusk": "^6.6",
"phpunit/phpunit": "^8.0|^9.0",
"symfony/filesystem": "^3.4 || ^4.0"
},
"replace": {},
"extra": {
"laravel": {
"providers": [
"AppManager\\Providers\\AppManagerServiceProvider"
]
}
},
"license": "MIT",
"autoload": {
"psr-4": {
"AppManager\\": "src"
},
"files": [
"src/Helpers/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
}
}