-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.19 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
49
50
51
52
53
54
{
"name": "zapheus/illuminate-bridge",
"description": "Laravel Service Provider bridge for Zapheus framework.",
"keywords": ["bridge", "laravel", "service provider", "zapheus"],
"homepage": "https://zapheus.github.io/illuminate-bridge/",
"license": "MIT",
"authors":
[
{
"email": "[email protected]",
"homepage": "https://roug.in/",
"name": "Rougin Gutib",
"role": "Software Engineer"
}
],
"require":
{
"php": ">=5.3.0",
"illuminate/container": "~4.1|~5.0",
"illuminate/config": "~4.1|~5.0",
"illuminate/support": "~4.1|~5.0",
"zapheus/zapheus": "~0.1"
},
"require-dev":
{
"phpunit/phpunit": "~4.2|~5.7",
"scrutinizer/ocular": "~1.1.0"
},
"autoload":
{
"psr-4":
{
"Zapheus\\Bridge\\Illuminate\\": "src"
}
},
"autoload-dev":
{
"psr-4":
{
"Zapheus\\Bridge\\Illuminate\\": "tests"
}
},
"scripts":
{
"test": "phpunit"
},
"extra":
{
"branch-alias":
{
"dev-master": "1.0-dev"
}
}
}