forked from izziaraffaele/laravel-jms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.08 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": "izziaraffaele/laravel-jms",
"version": "0.1.4",
"homepage": "https://github.com/izziaraffaele/laravel-jms",
"description": "JMS Serializer integration with Laravel",
"keywords": [
"jms",
"laravel",
"serializer",
"php"
],
"authors": [
{
"name": "izziaraffaele",
"homepage": "https://github.com/izziaraffaele",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/izziaraffaele/laravel-jms/issues",
"source": "https://github.com/izziaraffaele/laravel-jms"
},
"license": "MIT",
"type": "library",
"require": {
"php": ">=5.3.0",
"monolog/monolog": "1.*",
"jms/serializer": "^1.1",
"illuminate/support": "^5.1",
"illuminate/console": "^5.1",
"doctrine/common": "^2.6"
},
"require-dev": {
"phpdocumentor/phpdocumentor": "2.*",
"phpunit/phpunit": "4.*",
"sebastian/phpcpd": "2.*"
},
"autoload": {
"psr-4": {
"IRWeb\\LaravelJMS\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"IRWeb\\LaravelJMS\\Tests\\": "tests/"
}
}
}