-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
54 lines (54 loc) · 1.29 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
{
"name": "bahjaat/daisycon",
"description": "Laravel package to import data via Daisycon Rest API (affiliates)",
"keywords": [
"laravel",
"daisycon",
"affiliates"
],
"authors": [
{
"name": "Edwin Heij",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4",
"guzzlehttp/guzzle": "~6.0",
"cviebrock/eloquent-sluggable": "^4.3",
"prewk/xml-string-streamer": "^0.9",
"prewk/xml-string-streamer-guzzle": "^0.2",
"openlss/lib-array2xml": "^0.5.1",
"umpirsky/country-list": "^2.0",
"jenssegers/date": "^3.2",
"league/csv":"^8.0"
},
"autoload": {
"psr-4": {
"Bahjaat\\Daisycon\\": "src"
},
"classmap": [
"src/database/migrations",
"src/database/seeds"
]
},
"require-dev": {
"phpunit/phpunit" : "~5.0||~6.0",
"squizlabs/php_codesniffer": "^2.3"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Bahjaat\\Daisycon\\DaisyconServiceProvider"
]
}
},
"config": {
"sort-packages": true
}
}