-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
41 lines (41 loc) · 1000 Bytes
/
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
{
"name": "carboneio/carbone-sdk-php",
"description": "Official Carboneio PHP SDK to generate documents through the Carbone CLOUD API.",
"type": "library",
"homepage": "https://github.com/carboneio/carbone-sdk-php",
"license": "MIT",
"autoload": {
"psr-4": {
"Carboneio\\SDK\\": "src/",
"Carboneio\\SDK\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "steevepay",
"email": "contact@carbone.io"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.2",
"saloonphp/saloon": "^3.10"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64",
"pestphp/pest": "^3.5"
},
"scripts": {
"test": [
"./vendor/bin/pest"
],
"fix-code": [
"./vendor/bin/php-cs-fixer fix"
]
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}