Skip to content

Commit 36444f0

Browse files
committed
initial commit
0 parents  commit 36444f0

File tree

4 files changed

+486
-0
lines changed

4 files changed

+486
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
vendor/

composer.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"name": "wakebit/coding-standard",
3+
"type": "phpcodesniffer-standard",
4+
"description": "Wakebit Coding Standard",
5+
"keywords": [
6+
"coding standard",
7+
"phpcs",
8+
"codesniffer"
9+
],
10+
"license": "BSD-3-Clause",
11+
"require": {
12+
"php": "^7.4 || ^8.0",
13+
"dealerdirect/phpcodesniffer-composer-installer": "^0.7 || v1.0",
14+
"laminas/laminas-coding-standard": "^3.0",
15+
"slevomat/coding-standard": "^8.15.0",
16+
"squizlabs/php_codesniffer": "^3.10.3"
17+
},
18+
"autoload": {
19+
"psr-4": {
20+
"WakebitCodingStandard\\": "src/WakebitCodingStandard"
21+
}
22+
},
23+
"config": {
24+
"sort-packages": true,
25+
"allow-plugins": {
26+
"dealerdirect/phpcodesniffer-composer-installer": true
27+
}
28+
},
29+
"minimum-stability": "dev",
30+
"prefer-stable": true
31+
}

0 commit comments

Comments
 (0)