-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
76 lines (71 loc) · 3.04 KB
/
composer.json
File metadata and controls
76 lines (71 loc) · 3.04 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
66
67
68
69
70
71
72
73
74
75
76
{
"name" : "webservco/discogs-auth",
"type" : "library",
"description" : "Discogs Authentication library written in PHP.",
"keywords" : [
"webservco",
"discogs-auth"
],
"homepage" : "https://github.com/webservco/discogs-auth",
"license" : "MIT",
"require": {
"php" : "^8.3",
"webservco/framework" : "@dev"
},
"require-dev" : {
"pds/skeleton" : "^1",
"phpunit/phpunit" : "^9",
"php-parallel-lint/php-parallel-lint": "^1",
"php-parallel-lint/php-console-highlighter": "^1",
"phpcompatibility/php-compatibility": "^9",
"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",
"webservco/component-common": "^1"
},
"suggest" : {
"phpdocumentor/phpdocumentor": "phpDocumentor v3 (global installation)"
},
"autoload" : {
"psr-4" : {
"Tests\\Unit\\" : "tests/Unit/",
"WebServCo\\" : "src/WebServCo/"
}
},
"scripts" : {
"check:lint": "vendor/bin/parallel-lint config public resources src",
"check:structure" : "pds-skeleton validate .",
"check:phpcs": "vendor/bin/phpcs --standard=.phpcs/php-coding-standard.xml --extensions=php -sp bin config public resources src tests",
"s:1": "vendor/bin/phpstan analyse src tests --level=1 --ansi -c phpstan.neon",
"s:2": "vendor/bin/phpstan analyse src tests --level=2 --ansi -c phpstan.neon",
"s:3": "vendor/bin/phpstan analyse src tests --level=3 --ansi -c phpstan.neon",
"s:4": "vendor/bin/phpstan analyse src tests --level=4 --ansi -c phpstan.neon",
"s:5": "vendor/bin/phpstan analyse src tests --level=5 --ansi -c phpstan.neon",
"s:6": "vendor/bin/phpstan analyse src tests --level=6 --ansi -c phpstan.neon",
"s:7": "vendor/bin/phpstan analyse src tests --level=7 --ansi -c phpstan.neon",
"s:8": "vendor/bin/phpstan analyse src tests --level=8 --ansi -c phpstan.neon",
"s:9": "vendor/bin/phpstan analyse src tests --level=9 --ansi -c phpstan.neon",
"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",
"@s:1"
],
"c": "@check",
"doc" : [
"Composer\\Config::disableProcessTimeout",
"clear && phpDocumentor.phar -d . --ignore vendor/ -t var/tmp/phpdoc --cache-folder var/tmp/phpdoc/.cache && browser-sync start --server 'var/tmp/phpdoc'"
],
"test" : "vendor/bin/phpunit --colors=always",
"test:d" : "vendor/bin/phpunit --testdox"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}