-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathcomposer.json
84 lines (84 loc) · 2.45 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
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "phalcon/migrations",
"description": "Run and Generate DB Migrations with Phalcon Framework",
"version": "4.0.0",
"keywords": [
"framework",
"phalcon",
"migration",
"phar"
],
"homepage": "https://phalcon.io",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Phalcon Team",
"email": "[email protected]",
"homepage": "https://phalcon.io/en/team"
},
{
"name": "Contributors",
"homepage": "https://github.com/phalcon/migrations/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/phalcon/migrations/issues",
"source": "https://github.com/phalcon/migrations",
"forum": "https://forum.phalcon.io"
},
"require": {
"php": ">=8.0",
"ext-phalcon": ">=5.5",
"phalcon/cli-options-parser": "^2.0",
"nette/php-generator": "^4.0"
},
"require-dev": {
"ext-pdo": "*",
"phalcon/ide-stubs": "^5.5",
"squizlabs/php_codesniffer": "^3.5",
"fakerphp/faker": "^1.15",
"humbug/box": "^3.8",
"codeception/codeception": "^5.1",
"codeception/module-asserts": "^3.0.0",
"codeception/module-cli": "^2.0",
"codeception/module-db": "^3.0",
"vimeo/psalm": "^4.6",
"vlucas/phpdotenv": "^5.6",
"phpstan/phpstan": "^1.8"
},
"autoload": {
"psr-4": {
"Phalcon\\Migrations\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Phalcon\\Migrations\\Tests\\Cli\\": "tests/cli/",
"Phalcon\\Migrations\\Tests\\Integration\\": "tests/integration/",
"Phalcon\\Migrations\\Tests\\Mysql\\": "tests/mysql/",
"Phalcon\\Migrations\\Tests\\PostgreSQL\\": "tests/postgresql/",
"Phalcon\\Migrations\\Tests\\Unit\\": "tests/unit/"
}
},
"suggest": {
"robmorgan/phinx": "Phinx makes it ridiculously easy to manage the database migrations for your PHP app."
},
"minimum-stability": "dev",
"prefer-stable": true,
"archive": {
"exclude": [
"/.github",
"/tests",
".codacy.yml",
".codecov.yml",
"CHANGELOG.md",
"codeception.yml",
"phpcs.xml.dist",
"phpstan.neon.dist",
"psalm.xml.dist"
]
},
"bin": [
"phalcon-migrations"
]
}