forked from OkayCMS/OkayCMS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
76 lines (76 loc) · 2.19 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
73
74
75
76
{
"name": "okaycms/okaycms",
"description": "OkayCMS",
"homepage": "https://okay-cms.com",
"license": "LGPL-3.0-or-later",
"type": "project",
"authors": [
{
"name": "Vitaliy Vladov",
"email": "vitaliyvladov@gmail.com"
},
{
"name": "Yanchuk Oleg",
"email": "yanchuk.oleg2@gmail.com"
},
{
"name": "Vavilin Aleksandr",
"email": "synsvavilin@gmail.com"
},
{
"name": "Hleb Vasylenko",
"email": "glebvs93@gmail.com"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-SimpleXML": "*",
"ext-XMLReader": "*",
"ext-pdo": "*",
"ext-json": "*",
"ext-curl": "*",
"ext-mbstring": "*",
"ext-zip": "*",
"gregwar/image": "2.*",
"smarty/smarty": "~3.1",
"mobiledetect/mobiledetectlib": "^2.8",
"phpmailer/phpmailer": "~6.0",
"sabberworm/php-css-parser": "*",
"matthiasmullie/minify": "^1.3",
"bramus/router": "~1.4",
"psr/log": "^1.1",
"monolog/monolog": "^1.24",
"aura/sqlquery": "^2.7",
"aura/sql": "^3.0",
"haydenpierce/class-finder": "^0.3.3",
"axy/sourcemap": "^0.1.4",
"snowplow/referer-parser": "^0.2.0",
"giggsey/libphonenumber-for-php": "^8.12",
"rosell-dk/webp-convert": "^2.3",
"psr/container": "^1.1",
"symfony/console": "^5.3",
"dragonmantank/cron-expression": "^3.1",
"symfony/process": "^5.3",
"symfony/lock": "^5.3",
"orhanerday/open-ai": "^5.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"maximebf/debugbar": "^1.16",
"symfony/var-dumper": "^5.4.6"
},
"autoload": {
"psr-4": {
"Okay\\": "Okay/",
"Okay\\Admin\\": "backend/"
}
},
"scripts": {
"post-create-project-cmd": [
"@php -r \"file_exists('./config/config.local.php') || copy('./config/config.php', './config/config.local.php');\"",
"@php ok database:deploy"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}