-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
58 lines (58 loc) · 1.7 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
{
"name": "pagekit/pagekit",
"title": "Pagekit",
"version": "1.0.18",
"type": "project",
"description": "The Pagekit CMS",
"keywords": ["cms", "pagekit"],
"homepage": "http://pagekit.com",
"license": "MIT",
"authors": [
{
"name": "Pagekit Team",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"composer/composer": "~1.10.15",
"doctrine/annotations": "~1.10.4",
"doctrine/dbal": "~2.10.4",
"paragonie/random-lib": "~2.0.1",
"maximebf/debugbar": "~1.16.3",
"monolog/monolog": "~2.1.1",
"nikic/php-parser": "~4.10.2",
"psr/log": "~1.1.3",
"swiftmailer/swiftmailer": "~6.2.3",
"symfony/debug": "~4.4.15",
"symfony/finder": "~5.1.7",
"symfony/http-foundation": "~5.1.7",
"symfony/routing": "~5.1.7",
"symfony/stopwatch": "~5.1.7",
"symfony/templating": "~5.1.7",
"symfony/translation": "~5.1.7",
"twig/twig": "~3.0.5"
},
"require-dev": {
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"ext-xml": "*",
"ext-xmlwriter": "*",
"phpunit/phpunit": "~9.2.6"
},
"autoload": {
"psr-4": {
"Pagekit\\": "app/modules/application/src",
"Pagekit\\Installer\\": "app/installer/src",
"Pagekit\\System\\": "app/system/src",
"Pagekit\\Config\\": "app/modules/config/src",
"Pagekit\\Console\\": "app/console/src",
"Pagekit\\Migration\\": "app/modules/migration/src"
}
},
"config": {
"vendor-dir": "app/vendor"
}
}