-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathcomposer.json
37 lines (37 loc) · 1.35 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
{
"require": {
"php": ">=7.0.0",
"silex/silex": "~2.1",
"monolog/monolog": "~1.22",
"symfony/security": "~2.8.18",
"cnam/security-jwt-service-provider": "~2.1.1",
"doctrine/dbal": "~2.5.12",
"egulias/email-validator": "~2.1.7",
"phpmailer/phpmailer": "~6.0",
"google/recaptcha": "~1.1",
"phpfastcache/phpfastcache": "~7.0",
"twig/twig": " ^2.0"
},
"require-dev": {
"monolog/monolog": "~1.13",
"phpunit/phpunit": "~7.0",
"phpmd/phpmd": "@stable",
"robmorgan/phinx": "^0.10.0",
"deployer/deployer": "~6.2.0",
"squizlabs/php_codesniffer": "^3.2"
},
"autoload": {
"psr-4": {
"PhpDraft\\": "api",
"PhpDraft\\Config\\": "api/config",
"PhpDraft\\Config\\Security\\": "api/config/Security",
"PhpDraft\\Controllers\\": "api/Controllers",
"PhpDraft\\Controllers\\Admin\\": "api/Controllers/Admin",
"PhpDraft\\Controllers\\Commish\\": "api/Controllers/Commish",
"PhpDraft\\Domain\\Entities\\": "api/Domain/Entities",
"PhpDraft\\Domain\\Repositories\\": "api/Domain/Repositories",
"PhpDraft\\Domain\\Services\\": "api/Domain/Services",
"PhpDraft\\Domain\\Validators\\": "api/Domain/Validators"
}
}
}