-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
55 lines (55 loc) · 1.47 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
{
"name": "unleashedtech/php-coding-standard",
"type": "phpcodesniffer-standard",
"description": "CodeSniffer ruleset used by Unleashed Technologies",
"keywords": ["coding standard", "phpcs"],
"homepage": "https://github.com/unleashedtech/php-coding-standard",
"license": "MIT",
"authors": [
{
"name": "Colin O'Dell",
"email": "[email protected]"
}
],
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
},
"support" : {
"source": "https://github.com/unleashedtech/php-coding-standard",
"issues": "https://github.com/unleashedtech/php-coding-standard/issues"
},
"autoload": {
"psr-4": {
"Unleashed\\": "src/Unleashed"
}
},
"autoload-dev": {
"psr-4": {
"Unleashed\\Tests\\": "tests"
}
},
"require": {
"php": "^8.1",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7 || ^1.0.0",
"slevomat/coding-standard": "^8.11",
"squizlabs/php_codesniffer": "^3.7"
},
"require-dev": {
"symfony/phpunit-bridge": "^6.4"
},
"scripts": {
"test": [
"@phpcs",
"./vendor/bin/simple-phpunit",
"make test"
],
"phpcs": "./vendor/bin/phpcs"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}