-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
66 lines (66 loc) · 1.28 KB
/
composer.json
File metadata and controls
66 lines (66 loc) · 1.28 KB
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
{
"name": "akeeba/awf",
"type": "library",
"description": "A tiny MVC web application framework for single source standalone web applications, and WordPress plugins",
"require": {
"php": "^7.4.0|^8.0.0",
"ext-json": "*",
"composer/ca-bundle": "^1.2",
"phpmailer/phpmailer": "^6.8.0"
},
"suggest": {
"ext-curl": "*",
"ext-simplexml": "*",
"ext-pdo": "*",
"ext-libxml": "*",
"ext-mysqli": "*",
"ext-pgsql": "*"
},
"keywords": [
"framework",
"joomla",
"wordpress"
],
"homepage": "https://github.com/akeeba/awf",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Nicholas K. Dionysopoulos",
"email": "nicholas_NO_SPAM_PLEASE@akeeba.com",
"homepage": "http://www.dionysopoulos.me",
"role": "Lead Developer"
}
],
"require-dev": {
"phpunit/phpunit": "^11.5"
},
"config": {
"platform": {
"php": "8.2.0"
}
},
"autoload": {
"psr-4": {
"Awf\\": "src/"
},
"files": [
"src/Utils/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Awf\\Tests\\": "tests/"
}
},
"archive": {
"exclude": [
"/.idea",
"/vendor",
".gitattributes",
".gitignore",
".travis.yml",
"phpunit*",
"MIGRATION.md"
]
}
}