-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.24 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.24 KB
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
{
"name": "statamic/migrator",
"type": "statamic-addon",
"require": {
"php": "^8.4",
"friendsofphp/php-cs-fixer": "^3.92.5",
"laravel/framework": "^12.0 || ^13.0",
"league/flysystem-aws-s3-v3": "~1.0 || ~3.0",
"mustangostang/spyc": "dev-master#dfd9aadc1f5224065d55b42b712c7e99a50a3f4d"
},
"require-dev": {
"statamic/cms": "^6.5",
"mockery/mockery": "^1.4.4",
"orchestra/testbench": "^10.0 || ^11.0",
"phpunit/phpunit": "^11.0 || ^12.0"
},
"autoload": {
"psr-4": {
"Statamic\\Migrator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"extra": {
"statamic": {
"name": "Migrator",
"description": "Statamic v2 migration helper"
},
"laravel": {
"providers": [
"Statamic\\Migrator\\ServiceProvider"
]
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"pixelfear/composer-dist-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}