-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
64 lines (64 loc) · 2.06 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "coderg33k/typed-config-generator",
"description": "Typed Classes for your Laravel configs!",
"type": "library",
"require": {
"php": "^8.2",
"illuminate/support": "^9.0|^10.0",
"thecodingmachine/safe": "^2.5"
},
"require-dev": {
"dg/bypass-finals": "^1.5",
"ergebnis/phpstan-rules": "^2.1",
"nunomaduro/larastan": "^2.6",
"orchestra/testbench": "^7.0|^8.0",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-strict-rules": "^1.5",
"phpunit/phpunit": "^9.0|^10.4",
"rregeer/phpunit-coverage-check": "^0.3.1",
"slevomat/coding-standard": "^8.14",
"squizlabs/php_codesniffer": "^3.7",
"thecodingmachine/phpstan-strict-rules": "^1.0"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Coderg33k\\TypedConfigGenerator\\": "src/"
}
},
"authors": [
{
"name": "Marius",
"homepage": "https://github.com/MJTheOne"
}
],
"minimum-stability": "stable",
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"Coderg33k\\TypedConfigGenerator\\TypedConfigServiceProvider"
]
}
},
"scripts": {
"phpcs": "phpcs --standard=./phpcs_codestyle.xml -n src tests",
"phpcs-fix": "phpcbf --standard=./phpcs_codestyle.xml -n src tests",
"phpstan": "phpstan analyse --memory-limit=6G",
"phpunit": "vendor/bin/phpunit -c phpunit.xml.dist",
"phpunitwcov": "XDEBUG_MODE=coverage vendor/bin/phpunit -c phpunit.xml.dist --coverage-html reports/ --coverage-clover coverage/clover.xml",
"phpcoverage": "coverage-check coverage/clover.xml 100",
"checkup": [
"@phpcs",
"@phpstan",
"@phpunitwcov"
]
}
}