-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
67 lines (67 loc) · 1.9 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
{
"name": "wrkflow/php-get-typed-value",
"description": "Get typed (strict mode) values from an Array / XML with basic validation.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Martin Kluska",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1"
},
"require-dev": {
"ext-simplexml": "*",
"laravel/framework": "^9.25",
"nikic/php-parser": "v4.17.1",
"orchestra/testbench": "^7.7",
"phpstan/phpstan": "1.10.38",
"phpstan/phpstan-deprecation-rules": "1.1.4",
"phpstan/phpstan-phpunit": "1.3.15",
"phpunit/phpunit": "9.6.13",
"rector/rector": "0.18.5",
"symplify/easy-coding-standard": "12.0.8"
},
"scripts": {
"check": "composer lint && composer test",
"lint:check": "./vendor/bin/ecs",
"lint:fix": "./vendor/bin/ecs --fix",
"lint:stan": "./vendor/bin/phpstan",
"lint:upgrade:check": "vendor/bin/rector process --dry-run",
"lint:upgrade": "vendor/bin/rector process",
"lint": "composer lint:upgrade && composer lint:fix && composer lint:stan",
"test": "./vendor/bin/phpunit"
},
"suggest": {
"wrkflow/larastrict": "Improve your Laravel code base with DDD and strict conventions."
},
"autoload": {
"psr-4": {
"Wrkflow\\GetValue\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Wrkflow\\GetValueTests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"symfony/thanks": false
}
},
"archive": {
"exclude": ["/docs"]
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/pionl"
}
]
}