forked from cycle/migrations
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 746 Bytes
/
Copy pathcomposer.json
File metadata and controls
34 lines (34 loc) · 746 Bytes
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
{
"name": "cycle/migrations",
"type": "library",
"description": "Database migrations, migration scaffolding",
"license": "MIT",
"require": {
"php": ">=8.0",
"cycle/database": "^2.0",
"spiral/core": "^2.7",
"spiral/files": "^2.7",
"spiral/tokenizer": "^2.7",
"spiral/reactor": "^2.7"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"mockery/mockery": "^1.1"
},
"autoload": {
"psr-4": {
"Cycle\\Migrations\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cycle\\Migrations\\Tests\\": "tests/Migrations/",
"Cycle\\Migrations\\Fixtures\\": "tests/Fixtures/"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}