-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·51 lines (51 loc) · 1.29 KB
/
composer.json
File metadata and controls
executable file
·51 lines (51 loc) · 1.29 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
{
"name": "newestapps/push",
"version": "1.0.0",
"description": "Newestapps Push",
"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\\Push\\": "./src/"
},
"files": [],
"classmap": [
"database/migrations",
"database/seeds"
]
},
"require": {
"php": ">=7.1.0",
"laravel/framework": ">=5.5.32",
"newestapps/core": "dev-master",
"laravel-notification-channels/apn": "^0.3.1"
},
"extra": {
"laravel": {
"providers": [
"Newestapps\\Push\\Providers\\PushServiceProvider"
],
"aliases": {
}
}
}
}