-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
31 lines (31 loc) · 853 Bytes
/
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
{
"name": "wnmd1987/serviceinfrastructure",
"description": "Complement that allows to manage keys to dynamic subaccounts of any service of any of the third party applications we handle",
"type": "package",
"license": "MIT",
"keywords": ["service"],
"authors": [
{
"name": "Wolfred Montilla",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1.3"
},
"require-dev": {
"phpunit/phpunit": "^7"
},
"autoload": {
"psr-4": {
"wnmd1987\\serviceinfrastructure\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"wnmd1987\\serviceinfrastructure\\InfrastructureServiceProvider"
]
}
}
}