forked from odan/phinx-migrations-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
66 lines (66 loc) · 2.13 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
63
64
65
66
{
"name": "odan/phinx-migrations-generator",
"type": "library",
"description": "Migration generator for Phinx",
"keywords": [
"migration",
"migrations",
"generator",
"phinx",
"database",
"mysql"
],
"homepage": "https://github.com/odan/phinx-migrations-generator",
"license": "MIT",
"require": {
"php": "^7.2 || ^8.0",
"ext-json": "*",
"ext-pdo": "*",
"riimu/kit-phpencoder": "^2.4",
"robmorgan/phinx": "^0.12",
"symfony/console": "^2.8 || ^3.0 || ^4.0 || ^5.0",
"symfony/polyfill-php73": "^1.18"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"overtrue/phplint": "^1.1 || ^2.0 || ^3.0",
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": "^8 || ^9",
"squizlabs/php_codesniffer": "^3.4",
"symfony/polyfill-uuid": "^1.24",
"symfony/string": "^5 || ^6"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Odan\\Migration\\": "src/Migration/"
}
},
"autoload-dev": {
"psr-4": {
"Odan\\Migration\\Test\\": "tests/"
}
},
"bin": [
"./bin/phinx-migrations"
],
"scripts": {
"cs:check": "php-cs-fixer fix --dry-run --format=txt --verbose --diff --config=.cs.php",
"cs:fix": "php-cs-fixer fix --config=.cs.php",
"lint": "phplint ./ --exclude=vendor --no-interaction --no-cache",
"stan": "phpstan analyse -c phpstan.neon --no-progress --ansi",
"sniffer:check": "phpcs --standard=phpcs.xml",
"sniffer:fix": "phpcbf --standard=phpcs.xml",
"test": "phpunit --configuration phpunit.xml --do-not-cache-result --colors=always",
"test:all": [
"@lint",
"@cs:check",
"@sniffer:check",
"@stan",
"@test"
],
"test:coverage": "php -d xdebug.mode=coverage -r \"require 'vendor/bin/phpunit';\" -- --configuration phpunit.xml --do-not-cache-result --colors=always --coverage-clover build/logs/clover.xml --coverage-html build/coverage"
}
}