-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
62 lines (62 loc) · 1.63 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "howyi/conv",
"description": "Generate MySQL migration queries from actual DB and DDL",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Hayashi Takuya",
"email": "[email protected]"
}
],
"scripts": {
"test": "phpunit",
"stan": "phpstan analyse -l 7 src",
"cs": "phpcs --standard=PSR12 src tests",
"cbf": "phpcbf --standard=PSR12 src tests",
"check-fix": [
"composer stan",
"composer test",
"composer cbf"
],
"check": [
"composer stan",
"composer test",
"composer cs"
]
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/howyi/conv-test-suite.git",
"no-api": true
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.1",
"ext-PDO": "*",
"symfony/console": ">=2.0",
"composer/semver": "^1.4 || ^2.0 || ^3.0"
},
"autoload": {
"psr-4": {
"Howyi\\Conv\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Howyi\\Conv\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^6.2 || ^7.0",
"symfony/var-dumper": "^3.3",
"phpspec/prophecy": "^1.7",
"phpstan/phpstan": "^0.12.5",
"squizlabs/php_codesniffer": "^3.0",
"howyi/conv-test-suite": "dev-master",
"php-coveralls/php-coveralls": "^2.2"
},
"bin": ["bin/conv"]
}