forked from Algo-Web/POData
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (45 loc) · 1.15 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
{
"name": "algo-web/podata",
"type": "library",
"description": "OData for Poor PHP Developers",
"keywords": [ "rest", "odata" ],
"license": "BSD-2-Clause",
"authors": [
{
"name": "POData Project",
"email": "podataproject@gmail.com"
},
{
"name": "Microsoft Open Technologies, Inc.",
"email": "msopentech@microsoft.com"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/Algo-Web/serializer.git",
"no-api": true
}
],
"minimum-stability": "dev",
"require": {
"myclabs/php-enum": "1.2.0",
"php": ">=5.6.4",
"illuminate/http": ">=5.1",
"nesbot/carbon": ">2.0",
"algo-web/o-data-metadata": "0.1.*|dev-master"
},
"require-dev": {
"doctrine/annotations": "^v1.4.0",
"php-coveralls/php-coveralls": ">=v2.1",
"phpunit/phpunit": "^5.6",
"mockery/mockery": "0.9.*",
"fiunchinho/phpunit-randomizer": "2.0.*"
},
"autoload": {
"psr-0": {
"POData": "src/",
"UnitTests" : "tests/"
}
}
}