forked from masom/lhm_php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.07 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
{
"name": "masom/lhm",
"type": "library",
"description": "Large Hadron Migrator for phinx",
"keywords": ["lhm", "phinx", "migrations", "database", "db", "database migrations"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Martin Samson",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Lhm\\": "src/Lhm"
}
},
"autoload-dev": {
"psr-4": { "Lhm\\Tests\\": "tests/" }
},
"require": {
"php": "^5.6 || ^7.0",
"psr/log": "^1.0",
"symfony/console": "^2.0 || ^3.0",
"symfony/event-dispatcher": "^2.0 || ^3.0",
"symfony/monolog-bridge": "^2.0 || ^3.0"
},
"require-dev": {
"monolog/monolog": "~1.0",
"phpunit/phpunit": "^5.7 || ^6.1",
"robmorgan/phinx": "~0.9"
},
"suggest": {
"robmorgan/phinx": "Advanced database migration tool",
"monolog/monolog": "Allows more advanced logging of the application flow"
},
"bin": ["bin/lhm"]
}