-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
41 lines (41 loc) · 999 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
39
40
41
{
"name": "electro-modules/illuminate-database",
"description": "Integrates the Laravel's Illuminate Database Component into the Electro framework",
"type": "electro-plugin",
"keywords": [
"plugin",
"electro"
],
"license": "MIT",
"homepage": "https://github.com/electro-modules/illuminate-database",
"authors": [
{
"name": "Impactwave",
"email": "[email protected]",
"homepage": "http://impactwave.com"
},
{
"name": "Cláudio Silva",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6",
"electro/interop": "^1.0.0",
"php-kit/tools": "^2.0.0",
"illuminate/database": "5.5.40",
"illuminate/events": "^5.2.7",
"php-kit/ext-pdo": "^1.0.0",
"php-kit/power-primitives": "^1.0.0"
},
"autoload": {
"psr-4": {
"Electro\\Plugins\\IlluminateDatabase\\": "IlluminateDatabase"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}