-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·38 lines (38 loc) · 925 Bytes
/
composer.json
File metadata and controls
executable file
·38 lines (38 loc) · 925 Bytes
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
{
"name": "codecube/base",
"type": "library",
"description": "Base files for CodeCube Framework.",
"homepage": "http://mhasan.amarneta.com/codecube-framework/",
"support": {
"issues": "https://github.com/bappychanting/base/issues",
"source": "https://github.com/bappychanting/base"
},
"keywords": [
"php",
"base",
"codecube"
],
"authors": [
{
"name": "Mahadi Hasan",
"email": "bappychanting@outlook.com"
}
],
"license": "MIT",
"require": {
"php": ">=7.0",
"phpmailer/phpmailer": "~6.0"
},
"autoload": {
"psr-4":{
"Base\\": "Classes"
},
"files": [
"Functions/Framework.php",
"Functions/Templating.php",
"Functions/Views.php"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}