-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.58 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.58 KB
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
{
"name": "newestapps/core",
"version": "1.0.0",
"description": "Newestapps Core",
"homepage": "https://newestapps.com.br",
"license": "proprietary",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Rodrigo Brun",
"email": "rodrigotbrun@gmail.com",
"homepage": "http://rodrigobrun.com.br",
"role": "Developer"
},
{
"name": "Anderson Altissimo",
"email": "ander.altissimo@gmail.com",
"homepage": "http://andersonaltissimo.com.br",
"role": "Developer"
}
],
"support": {
"email": "contato@newestapps.com.br"
},
"autoload": {
"psr-4": {
"Newestapps\\Core\\": "./src/",
"NewestappsTests\\Core\\": "./tests/"
},
"files": [
"./src/Helpers/string.php"
],
"classmap": [
"database/migrations",
"database/seeds"
]
},
"require": {
"php": ">=7.1.0",
"laravel/framework": ">=5.5.32",
"myclabs/php-enum": "1.5.2",
"prettus/l5-repository": "2.6.32",
"guzzlehttp/guzzle": "6.3.0",
"kitetail/zttp": "v0.3.0",
"overtrue/laravel-lang": "~3.0",
"league/fractal": "^0.17.0"
},
"require-dev": {
"newestapps/dev": "dev-master"
},
"extra": {
"laravel": {
"providers": [
"Newestapps\\Core\\Providers\\CoreServiceProvider"
],
"aliases": {
}
}
}
}