-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
72 lines (72 loc) · 1.93 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "xpand4b/mipa-pool",
"type": "project",
"version": "2.0.0",
"description": "A small application to manage lunch orders.",
"homepage": "https://github.com/xPand4B/MiPa-Pool",
"keywords": ["framework", "MiPa-Pool"],
"authors": [
{
"name": "Eric Heinzl",
"email": "xpand.4beatz@gmail.com",
"homepage": "https://xpand4b.de",
"role": "Developer"
}
],
"license": "MIT",
"require": {
"php": "^7.2",
"fideloper/proxy": "^4.0",
"laravel/framework": "^6.2",
"laravel/passport": "^8.0",
"ext-json": "*"
},
"require-dev": {
"ext-json": "*",
"facade/ignition": "^1.4",
"fzaninotto/faker": "^1.4",
"mockery/mockery": "^1.0",
"nunomaduro/collision": "^3.0",
"phpunit/phpunit": "^8.0"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"classmap": [
"app/Components/Common/Database/factories",
"app/Components/Common/Database/seeds",
"app/Components/User/Database/factories"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": [
"app/tests",
"app/Components/Common/tests",
"app/Components/Menu/tests",
"app/Components/Order/tests",
"app/Components/Passport/tests",
"app/Components/User/tests"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
]
}
}