|
1 | 1 | {
|
2 |
| - "name": "kitloong/laravel-migrations-generator", |
3 |
| - "description": "Generates Laravel Migrations from an existing database", |
4 |
| - "keywords": ["laravel", "lumen", "migration", "generator", "migrations", "artisan"], |
5 |
| - "license": "MIT", |
6 |
| - "authors": [ |
7 |
| - { |
8 |
| - "name": "Kit Loong", |
9 |
| - "email": "kitloong1008@gmail.com" |
10 |
| - } |
11 |
| - ], |
12 |
| - "require": { |
| 2 | + "name": "kitloong/laravel-migrations-generator", |
| 3 | + "description": "Generates Laravel Migrations from an existing database", |
| 4 | + "keywords": [ |
| 5 | + "laravel", |
| 6 | + "lumen", |
| 7 | + "migration", |
| 8 | + "generator", |
| 9 | + "migrations", |
| 10 | + "artisan" |
| 11 | + ], |
| 12 | + "license": "MIT", |
| 13 | + "authors": [ |
| 14 | + { |
| 15 | + "name": "Kit Loong", |
| 16 | + "email": "kitloong1008@gmail.com" |
| 17 | + } |
| 18 | + ], |
| 19 | + "require": { |
13 | 20 | "php": ">=7.1.3",
|
14 |
| - "illuminate/support": "^5.6|^6.0|^7.0|^8.0|^9.0", |
| 21 | + "illuminate/support": "^5.6|^6.0|^7.0|^8.0|^9.0|^10.0", |
15 | 22 | "doctrine/dbal": "^2.4|^3.0",
|
16 | 23 | "myclabs/php-enum": "^1.6|^1.7|^1.8",
|
17 | 24 | "ext-pdo": "*"
|
18 | 25 | },
|
19 | 26 | "require-dev": {
|
20 |
| - "orchestra/testbench": "^3.6|^4.0|^5.0|^6.0|^7.0", |
| 27 | + "orchestra/testbench": "^3.6|^4.0|^5.0|^6.0|^7.0|^8.0", |
21 | 28 | "squizlabs/php_codesniffer": "^3.5",
|
22 |
| - "mockery/mockery": "^1.0", |
| 29 | + "mockery/mockery": "^1.0", |
23 | 30 | "friendsofphp/php-cs-fixer": "^2.19.0|^3.1",
|
24 | 31 | "nunomaduro/larastan": "^0.4|^0.5|^0.6|^0.7|^1.0|^2.0",
|
25 |
| - "phpmd/phpmd": "^2.10", |
26 |
| - "barryvdh/laravel-ide-helper": "^2.7", |
27 |
| - "slevomat/coding-standard": "^6.0|^7.0|^8.5" |
| 32 | + "phpmd/phpmd": "^2.10", |
| 33 | + "barryvdh/laravel-ide-helper": "^2.7", |
| 34 | + "slevomat/coding-standard": "^6.0|^7.0|^8.5" |
28 | 35 | },
|
29 |
| - "autoload": { |
30 |
| - "psr-4": { |
| 36 | + "autoload": { |
| 37 | + "psr-4": { |
31 | 38 | "KitLoong\\MigrationsGenerator\\": "src"
|
32 |
| - } |
33 |
| - }, |
34 |
| - "autoload-dev": { |
35 |
| - "psr-4": { |
36 |
| - "KitLoong\\MigrationsGenerator\\Tests\\": "tests" |
37 |
| - } |
38 |
| - }, |
39 |
| - "extra": { |
40 |
| - "laravel": { |
41 |
| - "providers": [ |
42 |
| - "KitLoong\\MigrationsGenerator\\MigrationsGeneratorServiceProvider" |
43 |
| - ] |
44 |
| - } |
45 |
| - }, |
| 39 | + } |
| 40 | + }, |
| 41 | + "autoload-dev": { |
| 42 | + "psr-4": { |
| 43 | + "KitLoong\\MigrationsGenerator\\Tests\\": "tests" |
| 44 | + } |
| 45 | + }, |
| 46 | + "extra": { |
| 47 | + "laravel": { |
| 48 | + "providers": [ |
| 49 | + "KitLoong\\MigrationsGenerator\\MigrationsGeneratorServiceProvider" |
| 50 | + ] |
| 51 | + } |
| 52 | + }, |
46 | 53 | "minimum-stability": "dev",
|
47 | 54 | "prefer-stable": true,
|
48 | 55 | "scripts": {
|
49 | 56 | "action-env-setup": [
|
50 | 57 | "@php -r \"file_exists('.env') || copy('.env.action', '.env');\""
|
51 | 58 | ],
|
52 |
| - "phpcs": ["phpcs"], |
53 |
| - "phpmd": ["phpmd \"src,tests\" xml .phpmd.xml"], |
| 59 | + "phpcs": [ |
| 60 | + "phpcs" |
| 61 | + ], |
| 62 | + "phpmd": [ |
| 63 | + "phpmd \"src,tests\" xml .phpmd.xml" |
| 64 | + ], |
54 | 65 | "phpstan": [
|
55 | 66 | "phpstan analyse"
|
56 | 67 | ]
|
57 | 68 | },
|
58 |
| - "config": { |
59 |
| - "allow-plugins": { |
60 |
| - "dealerdirect/phpcodesniffer-composer-installer": true |
61 |
| - } |
62 |
| - } |
| 69 | + "config": { |
| 70 | + "allow-plugins": { |
| 71 | + "dealerdirect/phpcodesniffer-composer-installer": true |
| 72 | + } |
| 73 | + } |
63 | 74 | }
|
0 commit comments