-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (62 loc) · 1.81 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
{
"name": "worksome/sdk",
"type": "library",
"description": "An object-oriented PHP wrapper for the Worksome API",
"license": "MIT",
"require": {
"php": "^8.2",
"php-http/client-common": "^2.5",
"php-http/discovery": "^1.14.3",
"php-http/httplug": "^2.3",
"php-http/multipart-stream-builder": "^1.2",
"psr/http-client-implementation": "^1.0",
"psr/http-factory-implementation": "^1.0",
"psr/http-message": "^1.1 || ^2.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.8",
"guzzlehttp/psr7": "^2.6",
"http-interop/http-factory-guzzle": "^1.2",
"pestphp/pest": "^2.34",
"php-http/mock-client": "^1.6",
"php-http/vcr-plugin": "^1.2",
"phpstan/phpstan": "^1.8.6",
"symfony/var-dumper": "^7.0",
"worksome/coding-style": "^2.10"
},
"autoload": {
"psr-4": {
"Worksome\\Sdk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Worksome\\Sdk\\Tests\\": "tests/"
}
},
"scripts": {
"ecs": "ecs",
"ecs:fix": "ecs --fix",
"test:unit": "vendor/bin/pest -p",
"test:coverage": "vendor/bin/pest -p --coverage",
"test:types": "vendor/bin/phpstan analyse",
"test:style": "@ecs",
"test": [
"@test:style",
"@test:types",
"@test:unit"
],
"update:snapshots": "pest -d --update-snapshots"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"worksome/coding-style": true,
"php-http/discovery": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}