-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
47 lines (47 loc) · 1.21 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
{
"name": "instaclick/gherkincs",
"description": "Code Sniffer and Semantic Analyzer for Gherkin",
"keywords": ["behat", "gherkin", "sniffer"],
"minimum-stability": "dev",
"license": "MIT",
"authors": [
{
"name": "Juti Noppornpitak",
"email": "[email protected]",
"role": "Developer"
}
],
"repositories": [
{
"type": "vcs",
"url": "[email protected]:instaclick/PHP_CodeSniffer.git"
},
{
"type": "vcs",
"url": "[email protected]:instaclick/ObjectCalisthenicsSniffs.git"
},
{
"type": "vcs",
"url": "[email protected]:instaclick/CodingStandard.git"
}
],
"require": {
"php": ">=5.3.6",
"twig/twig": "1.*"
},
"require-dev": {
"phpunit/phpunit": ">=3.7.x-dev",
"squizlabs/php_codesniffer": "1.5.0RC2",
"instaclick/symfony2-coding-standard": "dev-remaster",
"instaclick/object-calisthenics-sniffs": "dev-master",
"instaclick/coding-standard": "dev-master"
},
"autoload": {
"psr-0": {
"IC": "lib/"
}
},
"bin": [
"cuke"
]
}