forked from duncanmcclean/duplicator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.36 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
{
"name": "doublethreedigital/duplicator",
"description": "Duplicate Entries in the Statamic 3 Control Panel",
"license": "proprietary",
"autoload": {
"psr-4": {
"DoubleThreeDigital\\Duplicator\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"DoubleThreeDigital\\Duplicator\\Tests\\": "tests"
}
},
"extra": {
"statamic": {
"name": "Duplicator",
"description": "Duplicate Entries in the Statamic 3 Control Panel"
},
"laravel": {
"providers": [
"DoubleThreeDigital\\Duplicator\\ServiceProvider"
]
}
},
"require": {
"php": "^7.4 || ^8.0 || ^8.1",
"statamic/cms": "3.2.* || 3.3.* || 3.4.*"
},
"require-dev": {
"nunomaduro/collision": "^4.2 || ^5.0 || ^6.1",
"orchestra/testbench": "^5.0 || ^6.0 || ^7.0"
},
"scripts": {
"lint": [
"php-cs-fixer fix ./src"
],
"test": [
"./vendor/bin/phpunit"
]
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"pixelfear/composer-dist-plugin": true
}
},
"minimum-stability": "beta"
}