-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
51 lines (51 loc) · 1.2 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
48
49
50
51
{
"name": "potherca/flysystem-github",
"description": "Flysystem adapter for Github",
"keywords": [
"potherca",
"flysystem-github",
"flysystem-adapter",
"flysystem",
"github",
"adapter"
],
"homepage": "https://github.com/potherca/flysystem-github",
"license": "MIT",
"authors": [
{
"name": "Potherca",
"email": "[email protected]",
"homepage": "http://pother.ca/",
"role": "Developer"
}
],
"require": {
"php" : ">=5.5",
"knplabs/github-api": "^1.4",
"league/flysystem": "^1.0"
},
"require-dev": {
"phpunit/phpunit" : "^4.7.7",
"satooshi/php-coveralls": "^0.6.1",
"scrutinizer/ocular": "^1.1",
"whatthejeff/nyancat-phpunit-resultprinter": "^1.2"
},
"autoload": {
"psr-4": {
"Potherca\\Flysystem\\Github\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Potherca\\Flysystem\\Github\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.2.0-dev"
}
},
"scripts": {
"test" : "phpunit"
}
}