-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
52 lines (52 loc) · 1.23 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
{
"name": "awssat/laravel-sync-migration",
"type": "library",
"description": "Laravel tool helps to sync migrations without refreshing the database",
"keywords": [
"Laravel",
"Migration",
"Tool",
"Package",
"Sync",
"Database",
"Mysql",
"Php"
],
"homepage": "https://github.com/awssat/laravel-sync-migration",
"license": "MIT",
"authors": [
{
"name": "Bader Almutairi",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"illuminate/support": "^9.0 || ^10.0 || ^11.0",
"spatie/regex": "^3.1.1",
"doctrine/dbal": "^3.4 || ^4.0"
},
"autoload": {
"psr-4": {
"Awssat\\SyncMigration\\": "src"
}
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"fix-style": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
},
"laravel": {
"providers": [
"Awssat\\SyncMigration\\SyncMigrationServiceProvider"
]
}
},
"config": {
"sort-packages": true
}
}