-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
46 lines (46 loc) · 1.21 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
{
"name": "rudolfcms/rudolf",
"type": "project",
"description": "Rudolf is simple CMS written in PHP. That's all.",
"license": "MIT",
"authors": [
{
"name": "Mikołaj Pich",
"email": "[email protected]"
}
],
"require": {
"ext-gettext": "*",
"ext-PDO": "*",
"ext-json": "*",
"ext-zlib": "*",
"ext-mysqli": "*",
"ext-mbstring": "*",
"ext-gd": "*",
"ext-dom": "*",
"roave/security-advisories": "dev-master",
"php": ">=5.6.37",
"psr/log": "^1.0",
"phpixie/image": "^3.2",
"ircmaxell/password-compat": "^1.0",
"dg/mysql-dump": "^1.3",
"judev/php-htmltruncator": "^1.1",
"cocur/slugify": "^2.3"
},
"require-dev": {
"phpunit/phpunit": "4.8.*"
},
"autoload": {
"psr-4": {
"Rudolf\\Framework\\": "src/framework/",
"Rudolf\\Component\\": "src/component/",
"Rudolf\\Modules\\": "src/module/"
}
},
"autoload-dev": {
"psr-4": {
"Rudolf\\Tests\\Component\\": "tests/component/",
"Rudolf\\Tests\\Module\\": "tests/modules/"
}
}
}