-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
56 lines (56 loc) · 1.29 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
{
"name": "difra/difra",
"description": "Difra framework",
"keywords": [
"difra",
"framework",
"php"
],
"homepage": "https://www.difra.org",
"license": "BSD-2-Clause",
"dist": {
"url": "https://github.com/difra-org/difra/archive/refs/tags/8.0.1.zip",
"type": "zip"
},
"repositories": [
{
"type": "vcs",
"url": "[email protected]:difra-org/cms.git"
}
],
"require": {
"difra/lib-cache": "~8.0.0",
"difra/lib-db": "~8.0.0",
"difra/lib-events": "~8.0.0",
"difra/lib-security": "~8.0.0",
"php": "^8.1",
"ext-ctype": "*",
"ext-curl": "*",
"ext-date": "*",
"ext-dom": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"ext-Reflection": "*",
"ext-session": "*",
"ext-simplexml": "*",
"ext-xsl": "*",
"ext-zlib": "*",
"wikimedia/less.php": "^3.1.0",
"scssphp/scssphp": "1.1"
},
"autoload": {
"classmap": [
"src/main.php"
],
"psr-4": {
"Difra\\": "src"
}
},
"extra": {
"branch-alias": {
"dev-master": "8.0.x-dev"
}
}
}