forked from saloonphp/saloon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.37 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
{
"name": "sammyjo20/saloon",
"description": "A Laravel/PHP package that allows you to write your API integrations or SDKs in a beautiful, standardised syntax.",
"license": "MIT",
"type": "library",
"keywords": [
"sammyjo20",
"saloon",
"sdk",
"api",
"api-integrations"
],
"authors": [
{
"name": "Sam Carré",
"email": "[email protected]",
"role": "Developer"
}
],
"homepage": "https://github.com/sammyjo20/saloon",
"require": {
"php": "^8.0",
"guzzlehttp/guzzle": "^7.4",
"illuminate/support": "^8.0 || ^9.0",
"nesbot/carbon": "^2.58"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.5",
"pestphp/pest": "^1.21",
"spatie/ray": "^1.33"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Sammyjo20\\Saloon\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sammyjo20\\Saloon\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
},
"sort-packages": true
},
"scripts": {
"fix-code": [
"./vendor/bin/php-cs-fixer fix"
],
"test": [
"./vendor/bin/pest"
]
}
}