-
Notifications
You must be signed in to change notification settings - Fork 122
Expand file tree
/
Copy pathcomposer.json
More file actions
82 lines (82 loc) · 2.79 KB
/
composer.json
File metadata and controls
82 lines (82 loc) · 2.79 KB
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
72
73
74
75
76
77
78
79
80
81
82
{
"name": "cakephp/migrations",
"description": "Database Migration plugin for CakePHP",
"license": "MIT",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"migrations",
"cli"
],
"authors": [
{
"name": "CakePHP Community",
"homepage": "https://github.com/cakephp/migrations/graphs/contributors"
}
],
"homepage": "https://github.com/cakephp/migrations",
"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": ">=8.2",
"cakephp/cache": "^5.3.0",
"cakephp/database": "^5.3.2",
"cakephp/orm": "^5.3.0"
},
"require-dev": {
"cakephp/bake": "^3.3",
"cakephp/cakephp": "^5.3.0",
"cakephp/cakephp-codesniffer": "^5.0",
"phpunit/phpunit": "^11.5.3 || ^12.1.3"
},
"suggest": {
"cakephp/bake": "If you want to generate migrations.",
"dereuromark/cakephp-ide-helper": "If you want to have IDE suggest/autocomplete when creating migrations."
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Migrations\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Blog\\": "tests/test_app/Plugin/Blog/src/",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests/",
"Migrations\\Test\\": "tests/",
"Migrator\\": "tests/test_app/Plugin/Migrator/src/",
"SimpleSnapshot\\": "tests/test_app/Plugin/SimpleSnapshot/src/",
"TestApp\\": "tests/test_app/App/",
"TestBlog\\": "tests/test_app/Plugin/TestBlog/src/",
"Blog\\": "tests/test_app/Plugin/Blog/src/",
"Migrator\\": "tests/test_app/Plugin/Migrator/src/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"check": [
"@cs-check",
"@stan",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"phpstan": "tools/phpstan analyse",
"stan": "@phpstan",
"stan-baseline": "tools/phpstan --generate-baseline",
"stan-setup": "phive install",
"lowest": "validate-prefer-lowest",
"lowest-setup": "composer update --prefer-lowest --prefer-stable --prefer-dist --no-interaction && cp composer.json composer.backup && composer require --dev dereuromark/composer-prefer-lowest && mv composer.backup composer.json",
"test": "phpunit",
"test-coverage": "phpunit --coverage-clover=clover.xml"
}
}