-
Notifications
You must be signed in to change notification settings - Fork 43
/
composer.json
48 lines (48 loc) · 1.12 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
{
"name": "nextcloud/cms_pico",
"description": "Create websites using Pico CMS for Nextcloud",
"type": "project",
"license": "AGPL-3.0-or-later",
"authors": [
{
"name": "Maxence Lange",
"email": "[email protected]"
},
{
"name": "Daniel Rudolf",
"email": "[email protected]"
}
],
"autoload-dev": {
"psr-4": {
"OCA\\CMSPico\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.0.0",
"ext-json": "*",
"picocms/pico": "^2.1",
"picocms/pico-theme": "^2.1",
"picocms/pico-deprecated": "^2.1",
"picocms/composer-installer": "^1.0",
"xemlock/htmlpurifier-html5": "~0.1.11",
"symfony/yaml" : "^2.8|^3.4|^4.4|^5.1"
},
"require-dev": {
"phpunit/phpunit": "^8",
"phrozenbyte/phpunit-throwable-asserts": "^1.1",
"phrozenbyte/phpunit-array-asserts": "^v1.1",
"incompass/coverage": "^1.0"
},
"extra": {
"pico-theme-dir": "appdata/themes/",
"pico-plugin-dir": "appdata/plugins/"
},
"minimum-stability": "beta",
"prefer-stable": true,
"config": {
"allow-plugins": {
"picocms/*": true
}
}
}