Skip to content

Commit 7bf7367

Browse files
committed
Init
0 parents  commit 7bf7367

File tree

3 files changed

+27
-0
lines changed

3 files changed

+27
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/.idea
2+
/vendor
3+
/composer.lock

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Code Standard
2+
3+
Code standard rules enforced for my packages

composer.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "sandfox.dev/code-standard",
3+
"description": "A personal code standard for CodeSniffer",
4+
"type": "phpcodesniffer-standard",
5+
"license": "0BSD",
6+
"authors": [{
7+
"name": "Anton Smirnov",
8+
"homepage": "https://sandfox.me/",
9+
"email": "[email protected]",
10+
"role": "developer"
11+
}],
12+
"config": {
13+
"sort-packages": true
14+
},
15+
"require": {
16+
"dealerdirect/phpcodesniffer-composer-installer": "*",
17+
"phpcompatibility/php-compatibility": "*",
18+
"slevomat/coding-standard": "*",
19+
"squizlabs/php_codesniffer": "*"
20+
}
21+
}

0 commit comments

Comments
 (0)