-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.5 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
{
"name": "inceptphp/packages",
"type": "incept-package",
"description": "Schema, Relations, Object manager",
"minimum-stability": "dev",
"license": "LGPL-2.1-or-later",
"require-dev": {
"php-coveralls/php-coveralls": "2.5.2",
"phpunit/phpunit": "9.5.21",
"squizlabs/php_codesniffer": "3.7.1"
},
"require": {
"inceptphp/framework": "0.1.11",
"phpugph/storm": "1.0.4",
"swiftmailer/swiftmailer": "6.2.7",
"dejan7/httpquest": "0.3.0",
"robthree/twofactorauth": "1.8.2",
"erusev/parsedown": "1.7.4"
},
"autoload": {
"psr-4": {
"Incept\\Package\\": "/",
"Incept\\Package\\Admin\\": "admin/",
"Incept\\Package\\Api\\": "api/",
"Incept\\Package\\Auth\\": "auth/",
"Incept\\Package\\Captcha\\": "captcha/",
"Incept\\Package\\Csrf\\": "csrf/",
"Incept\\Package\\Developer\\": "developer/",
"Incept\\Package\\Email\\": "email/",
"Incept\\Package\\Field\\": "field/",
"Incept\\Package\\File\\": "file/",
"Incept\\Package\\Format\\": "format/",
"Incept\\Package\\Handlebars\\": "handlebars/",
"Incept\\Package\\History\\": "history/",
"Incept\\Package\\Install\\": "install/",
"Incept\\Package\\Profile\\": "profile/",
"Incept\\Package\\Queue\\": "queue/",
"Incept\\Package\\Role\\": "role/",
"Incept\\Package\\Sms\\": "sms/",
"Incept\\Package\\Storm\\": "storm/",
"Incept\\Package\\Valid\\": "valid/",
"Incept\\Package\\Website\\": "website/"
}
}
}