forked from colymba/silverstripe-restfulapi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
28 lines (28 loc) · 919 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
{
"name": "colymba/silverstripe-restfulapi",
"type": "silverstripe-vendormodule",
"description": "SilverStripe RESTful API with a default JSON serializer.",
"homepage": "https://github.com/colymba/silverstripe-restfulapi",
"keywords": ["silverstripe", "api", "REST", "REST API", "RESTful", "json api", "model serializer", "REST server", "RESTful server"],
"license": "BSD-3-Clause",
"authors": [{
"name": "Thierry Francois",
"homepage": "http://colymba.com"
}],
"repositories": [{
"type": "vcs",
"url": "git@github.com:colymba/silverstripe-restfulapi.git"
}],
"require": {
"silverstripe/framework": "~4.1"
},
"require-dev": {
"phpunit/phpunit": "~5.7@stable"
},
"autoload": {
"psr-4": {
"Colymba\\RESTfulAPI\\": "src/",
"Colymba\\RESTfulAPI\\Tests\\": "tests/"
}
}
}