-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 941 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
29
30
31
32
33
34
35
36
37
38
{
"name": "schweppesale/module-access",
"description": "",
"type": "project",
"minimum-stability": "dev",
"authors": [
{
"name": "John Tripi",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Schweppesale\\Module\\Access\\": "src"
}
},
"require": {
"laravel/framework": "~5.3.0",
"laravel-doctrine/orm": "~1.0",
"laravel-doctrine/acl": "~1.0",
"idr0id/papper": "~1.1.2",
"willdurand/hateoas": "~2.10",
"predis/predis": "1.0.3",
"schweppesale/module-core": "dev-master"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~4.0",
"phpspec/phpspec": "~2.1",
"pingpong/testing": "~2.0"
},
"extra": {
"map": [
["*", "Access/Application"]
]
}
}