forked from gnikyt/laravel-shopify
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
65 lines (65 loc) · 1.68 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "osiset/laravel-shopify",
"description": "Shopify package for Laravel to aide in app development",
"keywords": [
"api",
"laravel",
"shopify",
"shopify-api"
],
"license": "MIT",
"authors": [
{
"name": "Tyler King",
"email": "tyler@osiset.com"
}
],
"require": {
"php": ">=7.2",
"doctrine/dbal": "~2.5",
"funeralzone/valueobjects": "^0.4.5",
"jenssegers/agent": "^2.6",
"laravel/framework": "~5.8 || ^6.0 || ^7.0 || ^8.0",
"osiset/basic-shopify-api": "^9.0 || ^10.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.8",
"mockery/mockery": "^1.0",
"orchestra/database": "~3.8 || ~4.0 || ~5.0 || ~6.0",
"orchestra/testbench": "~3.8 || ~4.0 || ~5.0 || ~6.0",
"phpunit/phpunit": "~8.0 || ^9.0",
"squizlabs/php_codesniffer": "^3.0"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Osiset\\ShopifyApp\\ShopifyAppProvider"
]
}
},
"autoload": {
"psr-4": {
"Osiset\\ShopifyApp\\": "src/ShopifyApp"
},
"files": [
"src/ShopifyApp/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Osiset\\ShopifyApp\\Test\\": "tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "vendor/bin/phpunit"
},
"support": {
"issues": "https://github.com/osiset/laravel-shopify/issues",
"source": "https://github.com/osiset/laravel-shopify"
}
}