forked from Transatel/lib-eloquent-centreon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.23 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
{
"name": "eigenbahn/eloquent-model-centreon",
"description": "An Eloquent wrapper for Centreon data model.",
"keywords": [
"centreon",
"eloquent",
"laravel"
],
"type": "library",
"homepage": "https://github.com/Eigenbahn/lib-eloquent-centreon",
"support": {
"source": "https://github.com/Eigenbahn/lib-eloquent-centreon"
},
"authors": [
{
"name": "Jordan Besly",
"email": "jordan.besly@transatel.com"
}
],
"minimum-stability": "dev",
"require-dev": {
"laravel/framework": "^5.8.0",
"barryvdh/laravel-ide-helper": "^2.4.1",
"doctrine/dbal": "~2.3"
},
"require": {
"php": ">=5.6.4",
"illuminate/database": "5.8.*"
},
"autoload": {
"psr-4": {
"App\\Model\\Eloquent\\centreon\\": "app/Model/Eloquent/centreon/",
"App\\Model\\Eloquent\\centreon_storage\\": "app/Model/Eloquent/centreon_storage/",
"App\\Services\\CentreonRestApi\\": "app/Services/CentreonRestApi",
"App\\Services\\CentreonModel\\": "app/Services/CentreonModel"
}
},
"autoload-dev": {
"psr-4": {
"App\\": "app/"
}
}
}