-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
65 lines (65 loc) · 2.14 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 2.14 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name" : "parcelvalue/api-client",
"type" : "project",
"description" : "ParcelValue API Client",
"keywords" : [
"parcelvalue",
"api"
],
"homepage" : "https://github.com/parcelvalue/api-client",
"license" : "MIT",
"authors" : [
{
"name" : "Radu Maier",
"email" : "ariademur@webserv.co"
}
],
"require": {
"php" : "^8.4",
"parcelvalue/api" : "^3",
"webservco/api" : "^3",
"webservco/framework" : "^13"
},
"require-dev" : {
"pds/skeleton" : "^1.0",
"phpunit/phpunit" : "^9",
"phpcompatibility/php-compatibility": "^9",
"php-parallel-lint/php-parallel-lint": "^1",
"php-parallel-lint/php-console-highlighter": "^1",
"phpstan/phpstan-deprecation-rules": "^2",
"phpstan/phpstan-strict-rules": "^2",
"phpstan/phpstan-phpunit": "^2",
"phpstan/phpstan" : "^2",
"slevomat/coding-standard": "^8",
"squizlabs/php_codesniffer" : "^3",
"webservco/coding-standards": "^1"
},
"suggest" : {
},
"autoload" : {
"psr-4" : {
"ParcelValue\\" : "src/ParcelValue/",
"Tests\\" : "tests/unit/ParcelValue/"
}
},
"scripts" : {
"check:lint": "vendor/bin/parallel-lint config public resources src tests",
"check:phpcs": "vendor/bin/phpcs --standard=.phpcs/php-coding-standard.xml --extensions=php -sp bin config public resources src tests",
"check:phpstan": "vendor/bin/phpstan analyse bin config public resources src tests --ansi -c vendor/webservco/coding-standards/phpstan/phpstan.neon --level=max",
"check": [
"@check:lint",
"@check:phpcs",
"@check:phpstan"
],
"c": "@check",
"test" : "vendor/bin/phpunit --colors=always",
"test:d" : "vendor/bin/phpunit --testdox",
"post-install-cmd": "bash ./bin/git_hooks/setup.sh",
"post-update-cmd": "bash ./bin/git_hooks/setup.sh"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}