forked from fortrabbit/craft-copy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
71 lines (71 loc) · 2.06 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
{
"name": "fortrabbit/craft-copy",
"description": "Tooling for Craft on fortrabbit",
"type": "craft-plugin",
"keywords": [
"craft",
"craftcms",
"git",
"rsync",
"deployment"
],
"support": {
"email": "info@fortrabbit.com",
"docs": "https://github.com/fortrabbit/craft-copy/blob/master/README.md",
"source": "https://github.com/fortrabbit/craft-copy",
"issues": "https://github.com/fortrabbit/craft-copy/issues"
},
"license": "MIT",
"authors": [
{
"name": "Oliver Stark",
"homepage": "https://www.fortrabbit.com/"
}
],
"require": {
"php": "^8.0.2",
"albertofem/rsync-lib": "^1.0.0",
"composer/composer": "^2.7",
"craftcms/cms": "^4.6 | ^5.0",
"craftcms/plugin-installer": "^1.5.6",
"fortrabbit/craft-auto-migrate": "^2.5.0",
"gitonomy/gitlib": "^1.3",
"fortrabbit/yii2-artisan-bridge": "^1.5.1",
"symfony/process": "^5.0 | ^6.0",
"symfony/yaml": "^4.2 | ^5.0 | ^6.0",
"vlucas/phpdotenv": "^3.4.0 | ^5.4"
},
"require-dev": {
"craftcms/phpstan": "dev-main",
"craftcms/rector": "dev-main"
},
"autoload": {
"psr-4": {
"fortrabbit\\Copy\\": "src/"
}
},
"extra": {
"name": "Copy",
"handle": "copy",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/fortrabbit/craft-copy/master/CHANGELOG.md"
},
"scripts": {
"phpstan": "phpstan analyse src"
},
"bin": [
"bin/craft-copy-import-db.php",
"bin/craft-copy-env.php"
],
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/package-versions-deprecated": true,
"craftcms/plugin-installer": true,
"fortrabbit/craft-auto-migrate": true
},
"sort-packages": true
}
}