-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
48 lines (48 loc) · 1.28 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
{
"name": "chrishalbert/laravel-nomadic",
"type": "library",
"description": "A suite of tools to enhance robustness of laravel's migrations.",
"license": "MIT",
"keywords": ["laravel", "migration", "php"],
"authors": [
{
"name": "Chris Halbert",
"email": "christopher.halbert@gmail.com"
}
],
"require": {
"php": ">=7.3",
"illuminate/database": ">=5.8",
"illuminate/filesystem": ">=5.8"
},
"require-dev": {
"ext-xdebug": ">=2.7",
"phing/phing": "2.*",
"phpunit/phpunit": "4.* || 5.*",
"illuminate/config": "5.*",
"squizlabs/php_codesniffer": "2.*",
"chadicus/coding-standard": "~1.0",
"sebastian/peek-and-poke": "^1.0@dev",
"php-coveralls/php-coveralls": "2.*"
},
"autoload": {
"psr-4": {
"ChrisHalbert\\LaravelNomadic\\": "src"
}
},
"autoload-dev": {
"files": [
"tests/files/2018_04_04_000000_StandardMigration.php",
"tests/files/2018_04_04_000000_NomadicMockMigration.php",
"tests/files/2018_04_04_000000_NomadicMigrationWithPrintable.php",
"tests/files/2019_08_22_000000_NomadicMigrationSubclassWithPrintable.php"
]
},
"minimum-stability": "dev",
"prefer-stable" : true,
"config": {
"allow-plugins": {
"kylekatarnls/update-helper": false
}
}
}