-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
70 lines (70 loc) · 2.22 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
65
66
67
68
69
70
{
"name": "cuyz/valinor-bundle",
"type": "symfony-bundle",
"description": "Symfony integration of `cuyz/valinor` — a library that helps to map any input into a strongly-typed value object structure.",
"homepage": "https://github.com/CuyZ/Valinor-Bundle",
"license": "MIT",
"authors": [
{
"name": "Romain Canon",
"email": "[email protected]",
"homepage": "https://github.com/romm"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"cuyz/valinor": "^1.0",
"symfony/config": "^5.4 || ^6.4 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.4 || ^7.0",
"symfony/http-kernel": "^5.4 || ^6.4 || ^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.21",
"infection/infection": "^0.27.0",
"marcocesarato/php-conventional-changelog": "^1.17",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-strict-rules": "^1.5",
"phpstan/phpstan-symfony": "^1.3",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^10.2",
"symfony/console": "^5.4 || ^6.4 || ^7.0",
"symfony/framework-bundle": "^5.4 || ^6.4 || ^7.0",
"symfony/runtime": "^5.4 || ^6.4 || ^7.0"
},
"autoload": {
"psr-4": {
"CuyZ\\ValinorBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"CuyZ\\ValinorBundle\\Tests\\": "tests",
"CuyZ\\ValinorBundle\\Tests\\App\\": "tests/App/src"
}
},
"scripts": {
"check": [
"@putenv XDEBUG_MODE=off",
"phpunit",
"phpstan",
"php-cs-fixer fix --dry-run",
"@check-todo"
],
"check-todo": [
"! git --no-pager grep --extended-regexp --ignore-case 'todo|fixme' -- ':!composer.json' ':!*/quality-assurance.yml'"
],
"fix": [
"@putenv XDEBUG_MODE=off",
"php-cs-fixer fix"
],
"mutation": [
"infection --threads=max --git-diff-lines"
]
},
"config": {
"allow-plugins": {
"symfony/runtime": true,
"infection/extension-installer": true
}
}
}