This repository has been archived by the owner on Nov 30, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 374
/
composer.json
80 lines (80 loc) · 2.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "osiset/laravel-shopify",
"description": "Shopify package for Laravel to aide in app development",
"keywords": [
"api",
"callback-url",
"driver",
"facade",
"laravel",
"laravel-package",
"laravel-shopify",
"scripttags",
"sdk",
"shopify",
"shopify-api",
"shopify-app",
"webhook"
],
"license": "MIT",
"authors": [
{
"name": "Tyler King",
"email": "tyler@osiset.com"
}
],
"require": {
"php": ">=7.2",
"ext-json": "*",
"funeralzone/valueobjects": "^0.5",
"jenssegers/agent": "^2.6",
"laravel/framework": "^7.0 || ^8.0 || ^9.0",
"osiset/basic-shopify-api": "^9.0 || <=10.0.5"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.8",
"friendsofphp/php-cs-fixer": "^3.0",
"mockery/mockery": "^1.0",
"orchestra/database": "~3.8 || ~4.0 || ~5.0 || ~6.0 || ~7.0",
"orchestra/testbench": "~3.8 || ~4.0 || ~5.0 || ~6.0 || ~7.0",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "~8.0 || ^9.0"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"ergebnis/composer-normalize": true
}
},
"extra": {
"laravel": {
"providers": [
"Osiset\\ShopifyApp\\ShopifyAppProvider"
]
}
},
"autoload": {
"psr-4": {
"Osiset\\ShopifyApp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Osiset\\ShopifyApp\\Test\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"lint": "vendor/bin/php-cs-fixer fix",
"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",
"forum": "https://github.com/osiset/laravel-shopify/discussions",
"wiki": "https://github.com/osiset/laravel-shopify/wiki",
"source": "https://github.com/osiset/laravel-shopify"
}
}