|
1 | 1 | { |
2 | 2 | "name": "sammyjo20/saloon", |
3 | 3 | "description": "A Laravel/PHP package that allows you to write your API integrations or SDKs in a beautiful, standardised syntax.", |
4 | | - "type": "library", |
5 | 4 | "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 | + ], |
12 | 13 | "authors": [ |
13 | 14 | { |
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" |
16 | 18 | } |
17 | 19 | ], |
18 | | - "minimum-stability": "stable", |
| 20 | + "homepage": "https://github.com/sammyjo20/saloon", |
19 | 21 | "require": { |
20 | 22 | "php": "^8.0", |
21 | 23 | "guzzlehttp/guzzle": "^7.4", |
22 | | - "illuminate/support": "^8.0|^9.0", |
| 24 | + "illuminate/support": "^8.0 || ^9.0", |
23 | 25 | "nesbot/carbon": "^2.58" |
24 | 26 | }, |
25 | 27 | "require-dev": { |
26 | 28 | "friendsofphp/php-cs-fixer": "^3.5", |
27 | 29 | "pestphp/pest": "^1.21", |
28 | 30 | "spatie/ray": "^1.33" |
29 | 31 | }, |
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 | + } |
37 | 43 | }, |
38 | 44 | "config": { |
39 | 45 | "allow-plugins": { |
40 | | - "pestphp/pest-plugin": true |
| 46 | + "pestphp/pest-plugin": true, |
| 47 | + "sort-packages": true |
41 | 48 | } |
| 49 | + }, |
| 50 | + "scripts": { |
| 51 | + "fix-code": [ |
| 52 | + "./vendor/bin/php-cs-fixer fix" |
| 53 | + ], |
| 54 | + "test": [ |
| 55 | + "./vendor/bin/pest" |
| 56 | + ] |
42 | 57 | } |
43 | 58 | } |
0 commit comments