-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
executable file
·72 lines (67 loc) · 1.77 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": "Store Service",
"description": "Manager Service API",
"keywords": ["DDD", "Lumen", "Doctrine"],
"license": "MIT",
"type": "project",
"authors": [
{
"name": "Davi dos Santos",
"email": "davi646@gmail.com",
"homepage": "https://github.com/davists",
"role": "Developer"
}
],
"require": {
"php": ">=5.6.4",
"laravel/lumen-framework": "5.3.*",
"vlucas/phpdotenv": "~2.2",
"laravel-doctrine/orm": "1.2.*",
"firebase/php-jwt": "dev-master",
"graham-campbell/throttle": "^5.3",
"vlucas/valitron": "^1.4",
"guzzlehttp/guzzle": "~6.0",
"jms/serializer": "^1.6",
"symfony/property-access": "^3.2",
"aws/aws-sdk-php-laravel": "~3.0",
"laravel-doctrine/extensions":"^1.0",
"gedmo/doctrine-extensions":"^2.4",
"laravel-doctrine/fluent": "^1.1",
"darkaonline/swagger-lume": "~1.0",
"beberlei/DoctrineExtensions": "^1.0",
"league/flysystem-aws-s3-v3": "^1.0",
"illuminate/filesystem": "5.3.*",
"laravel-doctrine/migrations": "1.0.*",
"maatwebsite/excel": "~2.1.0",
"phpoffice/phpspreadsheet": "^1.0@beta"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"phpunit/phpunit": "~5.0",
"mockery/mockery": "~0.9"
},
"autoload": {
"psr-4": {
"Application\\Lumen53\\": "Application/Lumen53/core/",
"Application\\Services\\": "Application/Services/",
"Domain\\": "Domain/",
"Infrastructure\\": "Infrastructure/"
},
"files": [
"Infrastructure/Util/helper.php"
]
},
"autoload-dev": {
"classmap": [
"tests/",
"database/"
]
},
"scripts": {
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
]
},
"minimum-stability": "dev",
"prefer-stable": true
}