forked from thecodingmachine/database.patcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.15 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
{
"name": "mouf/database.patcher",
"description": "A database patch system designed for Mouf than enables developers to know what patch has been run and what needs to be run on its environment. This package adds database support to the Mouf patch system (mouf/utils.patcher).",
"keywords": ["mouf", "patch", "database"],
"homepage": "http://mouf-php.com/packages/mouf/database.patcher",
"type": "mouf-library",
"license": "MIT",
"authors": [
{
"name": "David Négrier",
"email": "[email protected]",
"homepage": "http://mouf-php.com"
}
],
"require": {
"php": ">=5.3.0",
"mouf/database.doctrine-dbal-wrapper": "~1.0",
"mouf/utils.patcher": "~1.0"
},
"autoload": {
"psr-0": {
"Mouf\\Database\\Patcher": "src/"
}
},
"extra": {
"mouf": {
"install": [
{
"type": "file",
"file": "src/install.php",
"description": "Create the 'patches' table in your database to track patches applied."
}
],
"require-admin": [
"src/DBPatchAdmin.php"
],
"logo": "icon.png"
}
}
}