-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
72 lines (72 loc) · 1.96 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
67
68
69
70
71
72
{
"name": "antcms/antcms",
"type": "project",
"license": "Apache-2.0",
"description": "A simple CMS built with PHP and Markdown",
"homepage": "https://antcms.org/",
"minimum-stability": "stable",
"support": {
"issues": "https://github.com/AntCMS-org/AntCMS/issues"
},
"require": {
"php": ">=8.1",
"antcms/antloader": "^2.0.0",
"elgigi/commonmark-emoji": "^2.0",
"embed/embed": "^4.4",
"flightphp/core": "^3.8",
"hostbybelle/compressionbuffer": "^1.0",
"league/commonmark": "^2.3",
"liborm85/composer-vendor-cleaner": "^1.7",
"nyholm/psr7": "^1.8",
"simonvomeyser/commonmark-ext-lazy-image": "^2.0",
"symfony/cache": "^6.0",
"symfony/polyfill-php81": "^1.29",
"symfony/polyfill-php82": "^1.29",
"symfony/polyfill-php83": "^1.29",
"symfony/yaml": "^6.0",
"twig/twig": "^3.5"
},
"replace": {
"symfony/polyfill-mbstring": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*"
},
"authors": [
{
"name": "Belle Aerni",
"email": "[email protected]"
}
],
"config": {
"vendor-dir": "src/Vendor",
"sort-packages": true,
"allow-plugins": {
"liborm85/composer-vendor-cleaner": true
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.54",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^9.5",
"rector/rector": "^1.0.4"
},
"extra": {
"dev-files": {
"/": [
"tests/",
"docs/",
".travis.yml",
".github/",
".devcontainer/",
".editorconfig",
"CHANGELOG.md"
],
"ml/json-ld": [
"Test/"
],
"ml/iri": [
"Test/"
]
}
}
}