forked from difra-org/difra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 814 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
{
"name": "difra/difra",
"description": "Difra framework",
"keywords": [
"framework",
"php"
],
"homepage": "https://www.difra.org",
"license": "BSD-2-Clause",
"require": {
"php": "~7.0.0",
"ext-ctype": "*",
"ext-curl": "*",
"ext-date": "*",
"ext-dom": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pdo_mysql": "*",
"ext-Reflection": "*",
"ext-session": "*",
"ext-SimpleXML": "*",
"ext-xsl": "*",
"ext-zlib": "*",
"oyejorge/less.php": "~1.7.0"
},
"autoload": {
"files": [
"src/functions.php"
],
"classmap": [
"src/main.php"
],
"psr-4": {
"Difra\\": "src"
}
}
}