forked from dgrigg/Craft-Migration-Manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 1.04 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
{
"name": "hyperoslo/migration-manager",
"description": "Quickly create migrations for settings and content at the click of a mouse.",
"version": "3.0.11",
"authors": [
{
"name": "Derrick Grigg",
"email": "[email protected]"
}
],
"support": {
"docs": "https://github.com/Firstborn/Craft-Migration-Manager/blob/master/README.md",
"issues": "https://github.com/Firstborn/Craft-Migration-Manager/issues"
},
"license": "MIT",
"type": "craft-plugin",
"minimum-stability": "stable",
"require": {
"craftcms/cms": "^3.0.0-RC1"
},
"autoload": {
"psr-4": {
"firstborn\\migrationmanager\\": "src/"
}
},
"extra": {
"name": "Migration Manager",
"handle": "migrationmanager",
"developer": "FirstBorn",
"developerUrl": "https://firstborn.com",
"class": "firstborn\\migrationmanager\\MigrationManager",
"hasCpSettings": false,
"hasCpSection": true,
"changelogUrl": "https://raw.githubusercontent.com/Firstborn/Craft-Migration-Manager/master/CHANGELOG.md"
}
}