|
1 | 1 | {
|
2 | 2 | "name": "kyon147/laravel-shopify",
|
3 | 3 | "description": "Shopify package for Laravel to aide in app development",
|
| 4 | + "license": "MIT", |
4 | 5 | "keywords": [
|
5 | 6 | "api",
|
6 | 7 | "callback-url",
|
|
16 | 17 | "shopify-app",
|
17 | 18 | "webhook"
|
18 | 19 | ],
|
19 |
| - "license": "MIT", |
20 | 20 | "authors": [
|
21 | 21 | {
|
22 | 22 | "name": "Luke (Kyon147)",
|
23 | 23 |
|
24 | 24 | }
|
25 | 25 | ],
|
| 26 | + "support": { |
| 27 | + "issues": "https://github.com/Kyon147/laravel-shopify/issues", |
| 28 | + "forum": "https://github.com/Kyon147/laravel-shopify/discussions", |
| 29 | + "wiki": "https://github.com/Kyon147/laravel-shopify/wiki", |
| 30 | + "source": "https://github.com/Kyon147/laravel-shopify" |
| 31 | + }, |
26 | 32 | "require": {
|
27 |
| - "php": "^8.1 || ^8.2 || ^8.3 || ^8.4", |
| 33 | + "php": "^8.1", |
28 | 34 | "ext-json": "*",
|
29 | 35 | "funeralzone/valueobjects": "^0.5",
|
| 36 | + "gnikyt/basic-shopify-api": "^11.0", |
30 | 37 | "jenssegers/agent": "^2.6",
|
31 |
| - "laravel/framework": "^10.0 || ^11.0 || ^12.0", |
32 |
| - "gnikyt/basic-shopify-api": "^11.0" |
| 38 | + "laravel/framework": "^10.0 || ^11.0 || ^12.0" |
33 | 39 | },
|
34 | 40 | "require-dev": {
|
35 |
| - "laravel/legacy-factories": "^v1.3.0", |
36 | 41 | "ergebnis/composer-normalize": "^2.8",
|
37 | 42 | "friendsofphp/php-cs-fixer": "^3.0",
|
| 43 | + "laravel/legacy-factories": "^1.3.0", |
38 | 44 | "mockery/mockery": "^1.0",
|
39 | 45 | "orchestra/testbench": "^8.0 || ^9.0",
|
40 | 46 | "phpstan/phpstan": "^0.12",
|
41 |
| - "phpunit/phpunit": "~8.0 || ^9.0 || ^10.0 || ^11.0" |
| 47 | + "phpunit/phpunit": "^8.0 || ^9.0 || ^10.0 || ^11.0" |
| 48 | + }, |
| 49 | + "minimum-stability": "dev", |
| 50 | + "prefer-stable": true, |
| 51 | + "autoload": { |
| 52 | + "psr-4": { |
| 53 | + "Osiset\\ShopifyApp\\": "src/" |
| 54 | + } |
| 55 | + }, |
| 56 | + "autoload-dev": { |
| 57 | + "psr-4": { |
| 58 | + "Osiset\\ShopifyApp\\Test\\": "tests/" |
| 59 | + } |
42 | 60 | },
|
43 | 61 | "config": {
|
44 |
| - "sort-packages": true, |
45 | 62 | "allow-plugins": {
|
46 | 63 | "ergebnis/composer-normalize": true
|
47 |
| - } |
| 64 | + }, |
| 65 | + "sort-packages": true |
48 | 66 | },
|
49 | 67 | "extra": {
|
50 | 68 | "laravel": {
|
|
53 | 71 | ]
|
54 | 72 | }
|
55 | 73 | },
|
56 |
| - "autoload": { |
57 |
| - "psr-4": { |
58 |
| - "Osiset\\ShopifyApp\\": "src/" |
59 |
| - } |
60 |
| - }, |
61 |
| - "autoload-dev": { |
62 |
| - "psr-4": { |
63 |
| - "Osiset\\ShopifyApp\\Test\\": "tests/" |
64 |
| - } |
65 |
| - }, |
66 |
| - "minimum-stability": "dev", |
67 |
| - "prefer-stable": true, |
68 | 74 | "scripts": {
|
69 | 75 | "lint": "vendor/bin/php-cs-fixer fix",
|
70 | 76 | "test": "vendor/bin/phpunit",
|
71 | 77 | "test-html-cov": "vendor/bin/phpunit --coverage-html ./build/html/",
|
72 | 78 | "test-no-cov": "vendor/bin/phpunit --no-coverage"
|
73 |
| - }, |
74 |
| - "support": { |
75 |
| - "issues": "https://github.com/Kyon147/laravel-shopify/issues", |
76 |
| - "forum": "https://github.com/Kyon147/laravel-shopify/discussions", |
77 |
| - "wiki": "https://github.com/Kyon147/laravel-shopify/wiki", |
78 |
| - "source": "https://github.com/Kyon147/laravel-shopify" |
79 | 79 | }
|
80 | 80 | }
|
0 commit comments