-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
89 lines (89 loc) · 2.32 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
85
86
87
88
89
{
"name": "nhzex/think-phinx",
"type": "library",
"description": "Phinx integration for thinkphp",
"keywords": [
"thinkphp",
"thinkphp6",
"thinkphp8",
"phinx",
"migration"
],
"license": "MIT",
"authors": [
{
"name": "auooru",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4|^8.0",
"composer-runtime-api": "^2.1",
"psr/container": "^1.0 || ^2.0",
"robmorgan/phinx": "~0.13",
"symfony/config": "^5.4|^6.0",
"symfony/console": "^5.4|^6.0",
"topthink/framework": "^6.0|^6.1|^8.0.1",
"topthink/think-orm": "^2.0.30|^3.0",
"zxin/phinx-schema": "^1.0.2|^2.0.0",
"zxin/think-symfony-bridge": "^3.0"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8"
},
"replace": {
"robmorgan/phinx": "0.14.0",
"cakephp/database": "4.5.5"
},
"autoload": {
"psr-4": {
"HZEX\\Phinx\\": "src",
"Zxin\\Think\\Phinx\\": "src-next"
},
"files": [
"third-party/vendor/scoper-autoload.php"
]
},
"autoload-dev": {
"psr-4": {
"Test\\Phinx\\": "tests"
}
},
"extra": {
"bamarni-bin": {
"bin-links": true,
"forward-command": true
},
"think": {
"services": [
"Zxin\\Think\\Phinx\\Service"
],
"config": {
"phinx": "config/phinx.php"
}
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"scripts": {
"post-install-cmd": [
"@composer bin phpunit install --ansi",
"@composer bin php-scoper install --ansi"
],
"bin-all-update": [
"@composer bin phpunit update --ansi",
"@composer bin php-scoper update --ansi"
],
"build-third-party": [
"php-scoper add --working-dir=./third-party-src --output-dir=../third-party --force",
"sleep 1",
"@composer --working-dir=./third-party dump-autoload",
"sleep 1",
"rm -r ./._* || rm -r ./..* || true"
]
}
}