-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
70 lines (70 loc) · 1.91 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
{
"name": "craftcms/craft",
"description": "Craft CMS",
"keywords": [
"craft",
"cms",
"craftcms",
"project"
],
"license": "MIT",
"homepage": "https://craftcms.com/",
"type": "project",
"support": {
"email": "support@craftcms.com",
"issues": "https://github.com/craftcms/cms/issues",
"forum": "https://craftcms.stackexchange.com/",
"source": "https://github.com/craftcms/cms",
"docs": "https://craftcms.com/docs",
"rss": "https://craftcms.com/changelog.rss"
},
"require": {
"php": "^8.0.2",
"craftcms/cms": "^4.0.0",
"craftcms/contact-form": "^3.0",
"craftcms/contact-form-honeypot": "^2.0",
"craftcms/element-api": "^3.0.0",
"craftcms/feed-me": "^5.0.4",
"craftcms/redactor": "^3.0.0",
"imarc/craft-googlecustomsearch": "^2.1",
"imarc/craft-pickture": "^1.0",
"luwes/craft3-codemirror": "dev-master",
"nystudio107/craft-retour": "^4.0.0",
"nystudio107/craft-seomatic": "^4.0.0",
"sebastianlenz/linkfield": "^2.1.3-rc",
"spicyweb/craft-neo": "^3.0",
"verbb/expanded-singles": "^2.0.0-beta.1",
"verbb/field-manager": "^3.0.0-beta.1",
"verbb/super-table": "^3.0.0-beta.4",
"vlucas/phpdotenv": "^5.3",
"wbrowar/adminbar": "^3.1",
"imarc/craft-kindling": "^2.1",
"nystudio107/craft-vite": "^4.0"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/imarc/craft-codemirror"
}
],
"autoload": {
"psr-4": {
"modules\\": "modules/"
}
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"echo -e \"\nChange into the new project's directory and run ops padstone-install\""
]
}
}