-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
85 lines (85 loc) · 1.79 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
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "bhaskarkc/lumen-api",
"description": "Simple API based on Laravel Lumen.",
"authors": [
{
"name": "Bhaskar K C",
"email": "xlinkerz@gmail.com"
}
],
"keywords": [
"docker",
"nginx",
"php8",
"framework",
"laravel",
"lumen"
],
"license": "MIT",
"type": "project",
"require": {
"php": "^7.4|^8.0",
"illuminate/redis": "^8.20",
"laravel/lumen-framework": "^8.0",
"predis/predis": "^1.1"
},
"repositories": [
{
"type": "package",
"package": {
"name": "bhaskarkc/php-nginx-server",
"version": "1.0.1",
"source": {
"url": "git@github.com:bhaskarkc/php-nginx-server.git",
"type": "git",
"reference": "feature/priv-user"
}
}
},
{
"type": "package",
"package": {
"name": "vishnubob/wait-for-it",
"version": "0.0.2",
"source": {
"url": "git@github.com:vishnubob/wait-for-it.git",
"type": "git",
"reference": "master"
}
}
}
],
"require-dev": {
"fakerphp/faker": "^1.9.1",
"mockery/mockery": "^1.3.1",
"phpunit/phpunit": "^9.3",
"bhaskarkc/php-nginx-server": "*",
"vishnubob/wait-for-it": "*"
},
"autoload": {
"psr-4": {
"App\\": [
"app/"
],
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
}
}