Skip to content

Commit 2a2d7a2

Browse files
committed
Clean composer json
1 parent befa3a3 commit 2a2d7a2

File tree

1 file changed

+34
-19
lines changed

1 file changed

+34
-19
lines changed

composer.json

Lines changed: 34 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,58 @@
11
{
22
"name": "sammyjo20/saloon",
33
"description": "A Laravel/PHP package that allows you to write your API integrations or SDKs in a beautiful, standardised syntax.",
4-
"type": "library",
54
"license": "MIT",
6-
"autoload": {
7-
"psr-4": {
8-
"Sammyjo20\\Saloon\\": "src/",
9-
"Sammyjo20\\Saloon\\Tests\\": "tests/"
10-
}
11-
},
5+
"type": "library",
6+
"keywords": [
7+
"sammyjo20",
8+
"saloon",
9+
"sdk",
10+
"api",
11+
"api-integrations"
12+
],
1213
"authors": [
1314
{
14-
"name": "Sammyjo20",
15-
"email": "29132017+Sammyjo20@users.noreply.github.com"
15+
"name": "Sam Carré",
16+
"email": "29132017+Sammyjo20@users.noreply.github.com",
17+
"role": "Developer"
1618
}
1719
],
18-
"minimum-stability": "stable",
20+
"homepage": "https://github.com/sammyjo20/saloon",
1921
"require": {
2022
"php": "^8.0",
2123
"guzzlehttp/guzzle": "^7.4",
22-
"illuminate/support": "^8.0|^9.0",
24+
"illuminate/support": "^8.0 || ^9.0",
2325
"nesbot/carbon": "^2.58"
2426
},
2527
"require-dev": {
2628
"friendsofphp/php-cs-fixer": "^3.5",
2729
"pestphp/pest": "^1.21",
2830
"spatie/ray": "^1.33"
2931
},
30-
"scripts": {
31-
"test": [
32-
"./vendor/bin/pest"
33-
],
34-
"fix-code": [
35-
"./vendor/bin/php-cs-fixer fix"
36-
]
32+
"minimum-stability": "stable",
33+
"autoload": {
34+
"psr-4": {
35+
"Sammyjo20\\Saloon\\": "src/",
36+
"Sammyjo20\\Saloon\\Tests\\": "tests/"
37+
}
38+
},
39+
"autoload-dev": {
40+
"psr-4": {
41+
"Sammyjo20\\Saloon\\Tests\\": "tests/"
42+
}
3743
},
3844
"config": {
3945
"allow-plugins": {
40-
"pestphp/pest-plugin": true
46+
"pestphp/pest-plugin": true,
47+
"sort-packages": true
4148
}
49+
},
50+
"scripts": {
51+
"fix-code": [
52+
"./vendor/bin/php-cs-fixer fix"
53+
],
54+
"test": [
55+
"./vendor/bin/pest"
56+
]
4257
}
4358
}

0 commit comments

Comments
 (0)