-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 770 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 770 Bytes
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
{
"name": "orisai/coding-standard",
"description": "Strict PHP coding standard",
"keywords": [
"dev",
"coding standard",
"orisai",
"phpcs",
"standards",
"static analysis"
],
"type": "library",
"license": "MPL-2.0",
"homepage": "https://github.com/orisai/coding-standard-php",
"authors": [
{
"name": "Marek Bartoš",
"homepage": "https://github.com/mabar"
}
],
"require": {
"php": "7.4 - 8.4",
"dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7 || ^1.0",
"slevomat/coding-standard": "^8.16.0",
"squizlabs/php_codesniffer": "^3.12.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}