-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.43 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.43 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
{
"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": "d.negrier@thecodingmachine.com",
"homepage": "http://mouf-php.com"
}
],
"require": {
"php": ">=7.1",
"mouf/database.doctrine-dbal-wrapper": "^1.0",
"mouf/utils.patcher": "^2.2",
"mouf/classname-mapper": "^1.0",
"symfony/filesystem": "^2 || ^3 || ^4",
"thecodingmachine/dbal-fluid-schema-builder": "^1.0"
},
"autoload": {
"psr-0": {
"Mouf\\Database\\Patcher": "src/"
}
},
"extra": {
"mouf": {
"install": [
{
"type": "class",
"class": "Mouf\\Database\\Patcher\\DatabasePatchInstaller3",
"description": "Create the 'patches' table in your database to track patches applied."
}
],
"require-admin": [
"src/DBPatchAdmin.php"
],
"logo": "icon.png"
}
}
}