Skip to content
This repository was archived by the owner on Sep 19, 2023. It is now read-only.

Commit f534911

Browse files
committed
Added composer json
1 parent 472b325 commit f534911

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

composer.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"name": "justcoded/phpcodesniffer",
3+
"description": "PHP CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
4+
"type": "library",
5+
"keywords": [
6+
"phpcs",
7+
"standards"
8+
],
9+
"license": "BSD-3-Clause",
10+
"authors": [
11+
{
12+
"name": "Alex Prokopenko",
13+
"email": "aprokopenko@justcoded.com",
14+
"homepage": "https://github.com/justcoded"
15+
}
16+
],
17+
"support": {
18+
"issues": "https://github.com/justcoded/phpcodesniffer/issues",
19+
"source": "https://github.com/justcoded/phpcodesniffer"
20+
},
21+
"require": {
22+
"php": ">=5.4.0",
23+
"ext-tokenizer": "*",
24+
"ext-xmlwriter": "*",
25+
"ext-simplexml": "*"
26+
},
27+
"require-dev": {
28+
"phpunit/phpunit": "^4.0 || ^5.0 || ^6.0"
29+
},
30+
"bin": [
31+
"phpcsx"
32+
]
33+
}

0 commit comments

Comments
 (0)