-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.59 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
{
"name": "phpallas/cms",
"authors": [
{
"name": "Sina Kuhestani",
"email": "[email protected]"
}
],
"description": "Free Open Source Content Management System written in PHP",
"type": "project",
"license": "MIT",
"config": {
"vendor-dir": "lib",
"bin-dir": "build/bin",
"data-dir": "build/data",
"cache-vcs-dir": "build/cache/vcs",
"cache-dir": "build/cache",
"archive-dir": "build/archive",
"cache-files-dir": "build/cache/files",
"cache-repo-dir": "build/cache/repo"
},
"autoload": {
"psr-4": {
"PHPallas\\CMS\\": "src/",
"PHPallas\\Utilities\\": "com/Utilities/src",
"PHPallas\\Session\\": "com/Session/src",
"PHPallas\\Config\\": "com/Config/src",
"PHPallas\\Buffer\\": "com/Buffer/src",
"PHPallas\\Standards\\": "com/Standards/src",
"PHPallas\\Env\\": "com/Env/src",
"PHPallas\\Commons\\": "com/Commons/src",
"PHPallas\\Model\\": "com/Model/src",
"PHPallas\\HttpKernel\\": "com/HttpKernel/src",
"PHPallas\\Router\\": "com/Router/src",
"PHPallas\\Framework\\": "com/Framework/src",
"PHPallas\\Locale\\": "com/Locale/src"
}
},
"repositories": {},
"minimum-stability": "stable",
"require-dev": {
"phpunit/phpunit": "^11"
},
"require": {
"php": ">=8.0.0",
"phpallas/utilities": "^1.0",
"phpallas/buffer": "^1.0",
"phpallas/session": "^1.0"
}
}