forked from dgrigg/Craft-Migration-Manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (36 loc) · 1.09 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
{
"name": "firstborn/migrationmanager",
"description": "Quickly create migrations for settings (ie fields, sections, sites) and content (ie entries and categories) at the click of a mouse.",
"version" : "3.0.2",
"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": "dev",
"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"
}
}