-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·49 lines (49 loc) · 1.2 KB
/
composer.json
File metadata and controls
executable file
·49 lines (49 loc) · 1.2 KB
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
{
"name": "forward-force/tms-api-sdk",
"description": "PHP Wrapper around TMS API",
"type": "library",
"keywords": [
"forwardforce",
"tms",
"api"
],
"license": "MIT",
"authors": [
{
"name": "Teodor Talov",
"email": "teodor@forwardforce.io"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.0.1",
"nesbot/carbon": "^2.57 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.5",
"phpmd/phpmd": "^2.9",
"vimeo/psalm": "^4.5"
},
"autoload": {
"psr-4": {
"ForwardForce\\TMS\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ForwardForce\\TMS\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"psalm": "vendor/bin/psalm -c psalm.xml --show-info=true",
"test": "vendor/bin/phpunit --colors=always",
"phpcs": "vendor/bin/phpcs src/",
"phpmd": "vendor/bin/phpmd src/ text phpmd.xml",
"cq": "composer psalm && composer phpcs && composer phpmd"
}
}