forked from castle/castle-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.36 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": "castle/castle-php",
"description": "PHP bindings for Castle",
"type": "library",
"keywords": ["real-time user account monitoring"],
"homepage": "https://github.com/castle/castle-php",
"license": "MIT",
"authors": [
{
"name": "Castle",
"email": "team@castle.io",
"homepage": "https://castle.io",
"role": "Developer"
}
],
"autoload": {
"classmap": [
"lib/Castle",
"lib/RestModel"
]
},
"repositories": [
{
"type": "package",
"package": {
"name": "sebastianbergmann/phpcov",
"version": "1.1.0",
"dist": {
"url": "https://github.com/sebastianbergmann/phpcov/archive/1.1.0.zip",
"type": "zip"
},
"source": {
"url": "https://github.com/sebastianbergmann/phpcov.git",
"type": "git",
"reference": "1.1.0"
},
"bin": [
"phpcov.php"
]
}
}
],
"require": {
"php": ">=5.3.2"
},
"require-dev": {
"phpunit/phpunit": "4.3.5",
"satooshi/php-coveralls": "v0.6.1",
"sebastianbergmann/phpcov": "1.1.0"
}
}