-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 957 Bytes
/
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
{
"name": "formal/migrations",
"type": "library",
"description": "SQL and Commands migrations",
"keywords": ["database", "sql", "commands", "cli", "migrations"],
"homepage": "http://github.com/formal-php/migrations",
"license": "MIT",
"authors": [
{
"name": "Baptiste Langlade",
"email": "[email protected]"
}
],
"support": {
"issues": "http://github.com/formal-php/migrations/issues"
},
"require": {
"php": "~8.2",
"innmind/operating-system": "~5.2",
"formal/orm": "~3.4"
},
"autoload": {
"psr-4": {
"Formal\\Migrations\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Fixtures\\Formal\\Migrations\\": "fixtures/"
}
},
"require-dev": {
"vimeo/psalm": "~5.13",
"innmind/black-box": "~5.7",
"innmind/coding-standard": "~2.0"
}
}