forked from gnikyt/laravel-shopify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 1.8 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
66
67
{
"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": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"doctrine/dbal": "~2.5",
"funeralzone/valueobjects": "^0.5",
"jenssegers/agent": "^2.6",
"laravel/framework": "^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",
"test-html-cov": "vendor/bin/phpunit --coverage-html ./build/html/",
"test-no-cov": "vendor/bin/phpunit --no-coverage"
},
"support": {
"issues": "https://github.com/osiset/laravel-shopify/issues",
"source": "https://github.com/osiset/laravel-shopify"
}
}