Skip to content

Commit 286fbaa

Browse files
Bump dependencies for Laravel 10 (#72)
1 parent ba257c8 commit 286fbaa

File tree

1 file changed

+48
-46
lines changed

1 file changed

+48
-46
lines changed

composer.json

Lines changed: 48 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,51 @@
11
{
2-
"name": "bennett-treptow/laravel-migration-generator",
3-
"description": "Generate migrations from existing database structures",
4-
"minimum-stability": "stable",
5-
"license": "MIT",
6-
"authors": [
7-
{
8-
"name": "Bennett Treptow",
9-
"email": "[email protected]"
10-
}
11-
],
12-
"require": {
13-
"php": "^7.4|^8.0",
14-
"illuminate/support": "^6.0|^7.0|^8.0|^9.0",
15-
"illuminate/console": "^6.0|^7.0|^8.0|^9.0",
16-
"illuminate/database": "^6.0|^7.0|^8.0|^9.0",
17-
"illuminate/config": "^6.0|^7.0|^8.0|^9.0",
18-
"marcj/topsort": "^2.0"
19-
},
20-
"autoload": {
21-
"psr-4": {
22-
"LaravelMigrationGenerator\\": "src/"
23-
}
24-
},
25-
"autoload-dev": {
26-
"psr-4": {
27-
"Tests\\": "tests/"
28-
}
29-
},
30-
"require-dev": {
31-
"orchestra/testbench": "^6.17",
32-
"friendsofphp/php-cs-fixer": "^2.16"
33-
},
34-
"scripts": {
35-
"post-autoload-dump": [
36-
"@php ./vendor/bin/testbench package:discover --ansi"
2+
"name": "bennett-treptow/laravel-migration-generator",
3+
"description": "Generate migrations from existing database structures",
4+
"minimum-stability": "stable",
5+
"license": "MIT",
6+
"authors": [
7+
{
8+
"name": "Bennett Treptow",
9+
"email": "[email protected]"
10+
}
3711
],
38-
"test": ["vendor/bin/phpunit"],
39-
"lint": "vendor/bin/php-cs-fixer fix"
40-
},
41-
"extra": {
42-
"laravel": {
43-
"providers": [
44-
"LaravelMigrationGenerator\\LaravelMigrationGeneratorProvider"
45-
]
46-
}
47-
},
48-
"prefer-stable": true
12+
"require": {
13+
"php": "^7.4|^8.0",
14+
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
15+
"illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
16+
"illuminate/database": "^6.0|^7.0|^8.0|^9.0|^10.0",
17+
"illuminate/config": "^6.0|^7.0|^8.0|^9.0|^10.0",
18+
"marcj/topsort": "^2.0"
19+
},
20+
"autoload": {
21+
"psr-4": {
22+
"LaravelMigrationGenerator\\": "src/"
23+
}
24+
},
25+
"autoload-dev": {
26+
"psr-4": {
27+
"Tests\\": "tests/"
28+
}
29+
},
30+
"require-dev": {
31+
"orchestra/testbench": "^6.17|^8.0",
32+
"friendsofphp/php-cs-fixer": "^2.16|^3.14"
33+
},
34+
"scripts": {
35+
"post-autoload-dump": [
36+
"@php ./vendor/bin/testbench package:discover --ansi"
37+
],
38+
"test": [
39+
"vendor/bin/phpunit"
40+
],
41+
"lint": "vendor/bin/php-cs-fixer fix"
42+
},
43+
"extra": {
44+
"laravel": {
45+
"providers": [
46+
"LaravelMigrationGenerator\\LaravelMigrationGeneratorProvider"
47+
]
48+
}
49+
},
50+
"prefer-stable": true
4951
}

0 commit comments

Comments
 (0)