-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
58 lines (58 loc) · 1.5 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
{
"name": "webleit/revisoapi",
"description": "Reviso Api - PHP SDK",
"license": "MIT",
"keywords": [
"reviso",
"api",
"contabilità in cloud",
"teamsystem"
],
"authors": [
{
"name": "Daniele Rosario",
"email": "daniele@weble.it"
}
],
"require": {
"php": "^8.0",
"illuminate/collections": "^8.0 || ^9.0",
"psr/http-message": "^1.0",
"psr/http-client-implementation": "^1.0",
"php-http/httplug": "^2.0",
"php-http/message-factory": "^1.0",
"php-http/discovery": "^1.0",
"ext-json": "*"
},
"require-dev": {
"ext-curl": "*",
"dms/phpunit-arraysubset-asserts": "^0.3.1",
"friendsofphp/php-cs-fixer": "^3.5",
"guzzlehttp/psr7": "^2.1",
"php-http/curl-client": "^2.2",
"php-http/message": "^1.12",
"php-http/mock-client": "^1.0",
"phpstan/phpstan": "^1.4",
"phpunit/phpunit": "^9.0",
"rector/rector": "^0.12.15"
},
"autoload": {
"psr-4": {
"Weble\\RevisoApi\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Weble\\RevisoApi\\Tests\\": "tests"
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse --level=5",
"test": "vendor/bin/phpunit --configuration=phpunit.dist.xml"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}