generated from Sammyjo20/package-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
44 lines (44 loc) · 1.07 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
{
"name": "saloonphp/cache-plugin",
"description": "Official plugin for caching Saloon responses",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Saloon\\CachePlugin\\": "src/",
"Saloon\\CachePlugin\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Sammyjo20",
"email": "29132017+Sammyjo20@users.noreply.github.com"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.1",
"saloonphp/saloon": "^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.13",
"pestphp/pest": "^2.3",
"spatie/ray": "^1.34.2",
"league/flysystem": "^3.12.2",
"orchestra/testbench": "^8.0",
"psr/simple-cache": "^3.0"
},
"scripts": {
"test": [
"./vendor/bin/pest"
],
"fix-code": [
"./vendor/bin/php-cs-fixer fix --allow-risky=yes"
]
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}