forked from moodev/php-weasel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
28 lines (28 loc) · 820 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": "moodev/Weasel",
"type": "library",
"description": "Object marshalling library for PHP supporting JSON and XML",
"keywords": ["marshall", "marshalling", "json", "serialization", "deserialization", "jackson"],
"homepage": "http://github.com/moodev/php-weasel",
"license": "ISC",
"require": {
"php": ">=5.3.0",
"psr/log": "~1.0",
"doctrine/annotations": "~1.1",
"doctrine/cache": "~1.0",
"symfony/Console": ">=2.3"
},
"require-dev": {
"mockery/mockery": "dev-master",
"phpunit/phpunit": "4.3.*"
},
"suggest": {
"monolog/monolog": "A logging framework that implements PSR 3"
},
"autoload": {
"psr-0": {
"Weasel": "lib"
}
},
"bin": ["bin/buildJsonConfig.php"]
}