-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
40 lines (40 loc) · 880 Bytes
/
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
{
"name": "snipper/snipper",
"description": "Easy way to get snippets from GitHub Gist service",
"keywords": ["cli", "util", "snippet", "gist", "github"],
"homepage": "https://github.com/ilsenem/snipper",
"license": "MIT",
"authors": [
{
"name": "Ilya Nemytchenko",
"email": "[email protected]",
"role": "Developer"
}
],
"bin": [
"bin/snipper"
],
"autoload": {
"psr-4": {
"Snipper\\": "src/Snipper/"
}
},
"autoload-dev": {
"psr-4": {
"Snipper\\Tests\\": "tests/Snipper/"
}
},
"minimum-stability": "stable",
"require": {
"php": "^5.4",
"symfony/console": "^2.7",
"knplabs/github-api": "^1.4"
},
"require-dev": {
"php": "^5.4",
"ext-xdebug": "^2.2",
"symfony/var-dumper": "^2.7",
"phpunit/phpunit": "^4.7",
"phpunit/php-code-coverage": "^2.1"
}
}