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
|
{
"authors": [
{
"email": "fkooman@tuxed.net",
"name": "Fran\u00e7ois Kooman"
}
],
"autoload": {
"psr-4": {
"fkooman\\SqliteMigrate\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"fkooman\\SqliteMigrate\\Tests\\": "tests/"
}
},
"description": "Library for SQLite database schema migration",
"license": "MIT",
"name": "fkooman/sqlite-migrate",
"require": {
"ext-pcre": "*",
"ext-pdo": "*",
"ext-spl": "*",
"ext-sqlite3": "*",
"php": ">= 5.4"
},
"require-dev": {
"phpunit/phpunit": "^4|^5|^6|^7"
},
"support": {
"email": "fkooman@tuxed.net",
"source": "https://git.tuxed.net/fkooman/php-sqlite-migrate"
},
"type": "library"
}
|