-
Notifications
You must be signed in to change notification settings - Fork 48
/
composer.json
66 lines (66 loc) · 2.03 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "phile-cms/phile",
"version": "2.0.0",
"type": "project",
"description": "A file-based CMS with a swappable parser, template engine, cache and storage services, error handler, and meta parser.",
"keywords": ["cms", "markdown", "flat", "file", "twig", "plugins"],
"homepage": "http://philecms.com",
"license": "MIT",
"authors": [
{
"name": "Frank Nägler",
"email": "[email protected]",
"homepage": "https://naegler.hamburg",
"role": "Developer"
},
{
"name": "James Doyle",
"email": "[email protected]",
"homepage": "http://ohdoylerules.com/",
"role": "Developer"
},
{
"name": "Schlaefer",
"email": "[email protected]",
"homepage": "http://siezi.com/",
"role": "Developer"
},
{
"name": "PhileCMS Community",
"homepage": "https://github.com/PhileCMS/Phile/graphs/contributors"
}
],
"config": {
"vendor-dir": "lib/vendor",
"allow-plugins": {
"phile-cms/plugin-installer-plugin": true
}
},
"autoload": {
"psr-4": {
"Phile\\": "lib/Phile"
}
},
"require": {
"php": ">=8.0.0",
"phile-cms/plugin-installer-plugin": "dev-master",
"twig/twig": "^1.0 || ^2.0",
"michelf/php-markdown": ">=1.9",
"phpfastcache/phpfastcache": "^9.0",
"filp/whoops": "^2.1",
"psr/http-factory": "^1.0",
"psr/container": "^1.0",
"psr/http-message": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/simple-cache": "^3.0",
"symfony/yaml": "^3.0 || ^4.0",
"laminas/laminas-diactoros": "^2.0",
"laminas/laminas-httphandlerrunner": "^1.2"
},
"require-dev": {
"phing/phing": "^2.14",
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "^3.2",
"phpstan/phpstan": "^1.8"
}
}