-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 978 Bytes
/
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
{
"name": "sserbin/doctrine-migrations2-upgrade",
"description": "Convert doctrine migrations files when upgrading from 1.x to 2.x",
"keywords": ["doctrine-migrations"],
"license": "MIT",
"authors": [
{
"name": "sserbin",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": { "Sserbin\\DoctrineMigrations2Upgrade\\": "src/"}
},
"autoload-dev": {
"psr-4": { "Sserbin\\DoctrineMigrations2Upgrade\\Tests\\": "tests/"}
},
"require": {
"php": "~7.1",
"doctrine/migrations": "^1.8.1",
"rector/rector": "^0.3.38"
},
"require-dev": {
"phpunit/phpunit": "^7.3",
"squizlabs/php_codesniffer": "^3.3",
"vimeo/psalm": "^3.0"
},
"bin": ["bin/migrations-upgrade"],
"scripts": {
"cs-check": "phpcs",
"static-analysis" : "psalm",
"test": "vendor/bin/phpunit --colors=always"
}
}