-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
41 lines (41 loc) · 1023 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": "prhost/bling-v3-sdk",
"description": "SDK PHP de integração com o Bling v3",
"homepage": "https://github.com/prhost/bling-v3-sdk",
"license": "MIT",
"keywords": [
"sdk",
"php",
"bling",
"api",
"v3"
],
"authors": [
{
"name": "Kallef Alexandre",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"nesbot/carbon": "^2.72",
"guzzlehttp/guzzle": "^7.8"
},
"require-dev": {
"fakerphp/faker": "^1.20",
"friendsofphp/php-cs-fixer": "^3.0",
"codeception/codeception": "^5.0",
"codeception/module-phpbrowser": "*",
"codeception/module-asserts": "^3.0",
"vlucas/phpdotenv": "^5.6"
},
"minimum-stability":"stable",
"autoload": {
"psr-4": {
"Prhost\\Bling\\": "src/",
"Tests\\": "tests/"
}
}
}