forked from cakephp/migrations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
71 lines (71 loc) · 2.22 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
67
68
69
70
71
{
"name": "cakephp/migrations",
"description": "Database Migration plugin for CakePHP based on Phinx",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"migrations"
],
"homepage": "https://github.com/cakephp/migrations",
"license": "MIT",
"authors": [
{
"name": "CakePHP Community",
"homepage": "https://github.com/cakephp/migrations/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/cakephp/migrations/issues",
"forum": "https://stackoverflow.com/tags/cakephp",
"irc": "irc://irc.freenode.org/cakephp",
"source": "https://github.com/cakephp/migrations"
},
"require": {
"php": ">=7.4.0",
"robmorgan/phinx": "^0.13.2",
"cakephp/orm": "^4.3.0",
"cakephp/cache": "^4.3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5.0",
"cakephp/cakephp": "^4.5.0",
"cakephp/bake": "^2.6.0",
"cakephp/cakephp-codesniffer": "^4.1"
},
"autoload": {
"psr-4": {
"Migrations\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests/",
"Migrations\\Test\\": "tests/",
"TestApp\\": "tests/test_app/App/",
"TestBlog\\": "tests/test_app/Plugin/TestBlog/src/"
}
},
"suggest": {
"cakephp/bake": "If you want to generate migrations.",
"dereuromark/cakephp-ide-helper": "If you want to have IDE suggest/autocomplete when creating migrations."
},
"prefer-stable": true,
"scripts": {
"check": [
"@cs-check",
"@test",
"@stan"
],
"cs-check": "phpcs -p",
"cs-fix": "phpcbf -p",
"stan": "phpstan analyse && psalm.phar --show-info=false",
"stan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan:~1.7.0 psalm/phar:~4.23.0 && mv composer.backup composer.json",
"test": "phpunit",
"test-coverage": "phpunit --coverage-clover=clover.xml"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}