-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
67 lines (67 loc) · 2.3 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
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "electro/framework",
"description": "Electro framework's subsystems for the standard configuration profiles",
"license": "MIT",
"authors": [
{
"name": "Impactwave",
"email": "[email protected]",
"homepage": "http://impactwave.com"
},
{
"name": "Cláudio Silva",
"email": "[email protected]"
}
],
"require": {
"electro/kernel": "dev-latest",
"consolidation/robo": "*",
"guzzlehttp/guzzle": "*",
"hansott/psr7-cookies": "*",
"league/glide": "*",
"monolog/monolog": "^2.5",
"php-kit/ext-pdo": "dev-latest",
"php-kit/flow": "dev-latest",
"php-kit/php-web-console": "dev-latest",
"php-kit/power-primitives": "dev-latest",
"psr/http-message": "*",
"psr/log": "^2.0",
"symfony/mailer": "*",
"vlucas/phpdotenv": "*"
},
"autoload": {
"psr-4": {
"Electro\\Authentication\\": "subsystems/authentication/Authentication",
"Electro\\Caching\\": "subsystems/caching/Caching",
"Electro\\Configuration\\": "subsystems/configuration/Configuration",
"Electro\\ConsoleApplication\\": "subsystems/console/ConsoleApplication",
"Electro\\ContentRepository\\": "subsystems/content-repository/ContentRepository",
"Electro\\Database\\": "subsystems/database/Database",
"Electro\\Debugging\\": "subsystems/debugging/Debugging",
"Electro\\ErrorHandling\\": "subsystems/error-handling/ErrorHandling",
"Electro\\Http\\": "subsystems/http/Http",
"Electro\\Localization\\": "subsystems/localization/Localization",
"Electro\\Logging\\": "subsystems/logging/Logging",
"Electro\\Mail\\": "subsystems/mail/Mail",
"Electro\\Navigation\\": "subsystems/navigation/Navigation",
"Electro\\Routing\\": "subsystems/routing/Routing",
"Electro\\Sessions\\": "subsystems/sessions/Sessions",
"Electro\\Tasks\\": "subsystems/tasks/Tasks",
"Electro\\Validation\\": "subsystems/validation/Validation",
"Electro\\ViewEngine\\": "subsystems/view-engine/ViewEngine/",
"Electro\\WebServer\\": "subsystems/web-server/WebServer"
},
"files": [
"global.php"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"bin": [
"subsystems/tasks/bin/build",
"subsystems/console/bin/workman"
]
}