-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 1.74 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
{
"name": "bramon/api",
"description": "BRAMON API.",
"keywords": ["brazilian", "meteor", "observation", "network", "api", "BRAMON"],
"license": "MIT",
"type": "project",
"authors": [
{
"name": "Thiago Paes",
"email": "[email protected]",
"homepage": "https://mrprompt.github.io"
}
],
"require": {
"php": ">=7.4",
"ext-curl": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-simplexml": "*",
"darkaonline/swagger-lume": "5.6.*",
"doctrine/dbal": "^2.11",
"fzaninotto/faker": "^1.4",
"laravel/lumen-framework": "5.8.*",
"league/csv": "^9.6",
"league/flysystem": "^2.4",
"lorisleiva/laravel-deployer": "^0.3.2",
"mohammad-fouladgar/eloquent-builder": "^2.2",
"ramsey/uuid": "^4.2"
},
"require-dev": {
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^7.0"
},
"autoload": {
"classmap": [
"database/seeds",
"database/factories"
],
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"classmap": [
"tests/",
"database/"
],
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-update-cmd": [
"@php -r \"symlink('storage/captures', 'public/captures');\""
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true
}