Skip to content

Commit f35990d

Browse files
committed
normalize composer json
1 parent 2aab761 commit f35990d

File tree

1 file changed

+26
-26
lines changed

1 file changed

+26
-26
lines changed

composer.json

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "kyon147/laravel-shopify",
33
"description": "Shopify package for Laravel to aide in app development",
4+
"license": "MIT",
45
"keywords": [
56
"api",
67
"callback-url",
@@ -16,35 +17,52 @@
1617
"shopify-app",
1718
"webhook"
1819
],
19-
"license": "MIT",
2020
"authors": [
2121
{
2222
"name": "Luke (Kyon147)",
2323
"email": "[email protected]"
2424
}
2525
],
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+
},
2632
"require": {
27-
"php": "^8.1 || ^8.2 || ^8.3 || ^8.4",
33+
"php": "^8.1",
2834
"ext-json": "*",
2935
"funeralzone/valueobjects": "^0.5",
36+
"gnikyt/basic-shopify-api": "^11.0",
3037
"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"
3339
},
3440
"require-dev": {
35-
"laravel/legacy-factories": "^v1.3.0",
3641
"ergebnis/composer-normalize": "^2.8",
3742
"friendsofphp/php-cs-fixer": "^3.0",
43+
"laravel/legacy-factories": "^1.3.0",
3844
"mockery/mockery": "^1.0",
3945
"orchestra/testbench": "^8.0 || ^9.0",
4046
"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+
}
4260
},
4361
"config": {
44-
"sort-packages": true,
4562
"allow-plugins": {
4663
"ergebnis/composer-normalize": true
47-
}
64+
},
65+
"sort-packages": true
4866
},
4967
"extra": {
5068
"laravel": {
@@ -53,28 +71,10 @@
5371
]
5472
}
5573
},
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,
6874
"scripts": {
6975
"lint": "vendor/bin/php-cs-fixer fix",
7076
"test": "vendor/bin/phpunit",
7177
"test-html-cov": "vendor/bin/phpunit --coverage-html ./build/html/",
7278
"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"
7979
}
8080
}

0 commit comments

Comments
 (0)