-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 1002 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
32
33
34
35
36
37
38
{
"name": "jminkler/laravel-shopstylecollective",
"description": "Laravel package to work with the Shopstyle Collective API",
"type": "library",
"require": {
"guzzlehttp/guzzle": "^6.3"
},
"authors": [
{
"name": "Jarret Minkler",
"email": "jarret.minkler@gmail.com"
}
],
"autoload": {
"psr-4": {
"Jminkler\\LaravelShopstyleCollective\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jminkler\\LaravelShopstyleCollective\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Jminkler\\LaravelShopstyleCollective\\ShopstyleCollectiveServiceProvider"
],
"aliases": {
"Shopstyle": "Jminkler\\LaravelShopstyleCollective\\ShopstyleFacade"
}
}
},
"require-dev": {
"phpunit/phpunit": "^6.5",
"orchestra/testbench": "^3.5"
}
}