-
-
Notifications
You must be signed in to change notification settings - Fork 108
/
composer.json
79 lines (79 loc) · 2.19 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "saloonphp/saloon",
"description": "Build beautiful API integrations and SDKs with Saloon",
"license": "MIT",
"type": "library",
"keywords": [
"sammyjo20",
"saloon",
"sdk",
"api",
"api-integrations"
],
"authors": [
{
"name": "Sam Carré",
"email": "[email protected]",
"role": "Developer"
}
],
"homepage": "https://github.com/saloonphp/saloon",
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.6",
"guzzlehttp/promises": "^1.5 || ^2.0",
"guzzlehttp/psr7": "^2.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.1 || ^2.0"
},
"require-dev": {
"ext-simplexml": "*",
"friendsofphp/php-cs-fixer": "^3.5",
"illuminate/collections": "^9.39 || ^10.0",
"league/flysystem": "^3.0",
"pestphp/pest": "^2.10",
"phpstan/phpstan": "^1.11.4",
"saloonphp/xml-wrangler": "^1.1",
"spatie/ray": "^1.33",
"symfony/dom-crawler": "^6.0 || ^7.0",
"symfony/var-dumper": "^6.3 || ^7.0"
},
"conflict": {
"sammyjo20/saloon": "*"
},
"suggest": {
"illuminate/collections": "Required for the response collect() method.",
"symfony/dom-crawler": "Required for the response dom() method.",
"saloonphp/xml-wrangler": "Required for the response xmlReader() method.",
"symfony/var-dumper": "Required for default debugging drivers."
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Saloon\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Saloon\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"pestphp/pest-plugin": true
},
"sort-packages": true
},
"scripts": {
"fix-code": [
"./vendor/bin/php-cs-fixer fix --allow-risky=yes"
],
"test": [
"./vendor/bin/pest -p"
],
"pstan": [
"./vendor/bin/phpstan analyse"
]
}
}