-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathcomposer.json
27 lines (27 loc) · 997 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
{
"name": "omarelgabry/miniphp",
"type": "project",
"description": "A small, simple PHP MVC framework skeleton that encapsulates a lot of features surrounded with powerful security layers.",
"keywords": ["framework", "authentication", "authorization", "mvc", "security", "login", "encryption", "validation", "files", "ajax"],
"homepage": "https://github.com/OmarElGabry/miniPHP",
"license": "MIT",
"authors": [
{
"name": "Omar El Gabry",
"email": "omar.elgabry.93@gmail.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/OmarElGabry/miniPHP/issues",
"source": "https://github.com/OmarElGabry/miniPHP"
},
"require": {
"php": ">=5.5.0",
"phpmailer/phpmailer": "~5.2",
"gregwar/captcha": "~1.1.1"
},
"autoload": {
"psr-4": { "": ["app/core/", "app/models/", "app/utility/", "app/controllers/", "app/core/components/"] }
}
}