-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
48 lines (48 loc) · 1.38 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
{
"name": "tomasvotruba/lavarle",
"description": "Sexy Utils for Laravel projects",
"keywords": ["laravel", "tools"],
"license": "MIT",
"require": {
"php": "^8.1",
"laravel/framework": "^10.1",
"nette/robot-loader": "^3.4|^4.0",
"nette/utils": "^3.2|^4.0"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^10.0",
"rector/rector": "^0.15.18",
"symplify/easy-ci": "^11.2",
"symplify/easy-coding-standard": "^11.2",
"symplify/phpstan-extensions": "^11.2"
},
"autoload": {
"psr-4": {
"TomasVotruba\\Lavarle\\": ["src", "generated"]
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"TomasVotruba\\Lavarle\\Tests\\": "tests"
}
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyze --error-format symplify",
"check-cs": "vendor/bin/ecs check --ansi",
"fix-cs": "vendor/bin/ecs check --fix --ansi",
"rector": "vendor/bin/rector --dry-run --ansi"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}