-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
71 lines (71 loc) · 2.01 KB
/
composer.json
File metadata and controls
71 lines (71 loc) · 2.01 KB
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
{
"name": "ndestates/laravel-model-schema-checker",
"description": "A comprehensive Laravel application validator for security, performance, relationships, migrations, and code quality. DEVELOPMENT ONLY - DO NOT install in production environments.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "NDEstates",
"email": "support@ndestates.com"
}
],
"require": {
"php": "^8.2",
"illuminate/support": "^11.0|^12.0",
"illuminate/database": "^11.0|^12.0",
"illuminate/console": "^11.0|^12.0"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"pestphp/pest": "^2.34|^3.0",
"pestphp/pest-plugin-laravel": "^2.4|^3.0",
"orchestra/testbench": "^9.0|^10.0",
"phpstan/phpstan": "^1.11|^2.0",
"squizlabs/php_codesniffer": "^3.8",
"phpmd/phpmd": "^2.15"
},
"conflict": {
"pestphp/pest": "<2.34",
"pestphp/pest-plugin-laravel": "<2.4"
},
"autoload": {
"psr-4": {
"NDEstates\\LaravelModelSchemaChecker\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NDEstates\\LaravelModelSchemaChecker\\Tests\\": "tests/"
}
},
"scripts": {
"test": "pest",
"test:coverage": "pest --coverage-html=coverage",
"test:all": [
"@test",
"@stan",
"@cs",
"@md"
],
"test:integration": "./test-ddev.sh",
"test:local": "./test-local.sh",
"stan": "phpstan analyse",
"cs": "phpcs",
"cs:fix": "phpcbf",
"md": "phpmd src text codesize,unusedcode,naming"
},
"extra": {
"laravel": {
"providers": [
"NDEstates\\LaravelModelSchemaChecker\\ModelSchemaCheckerServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}