-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomposer.json
98 lines (98 loc) · 2.49 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "hyperized/hostfact",
"description": "Hostfact 3.0 API Implementation for Laravel",
"keywords": [
"hyperized",
"hostfact",
"api"
],
"type": "library",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Gerben Geijteman",
"email": "gerben@hyperized.net"
}
],
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.5",
"hyperized/value-objects": "^0.3.0",
"thecodingmachine/safe": "^2.4"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpmd/phpmd": "^2.13",
"vimeo/psalm": "^5.1",
"orchestra/testbench": "^7.15 || ^8.0",
"phpstan/phpstan": "^1.9",
"squizlabs/php_codesniffer": "^3.7",
"povils/phpmnd": "^3.0",
"infection/infection": "^0.26.16 || ^0.27.0"
},
"autoload": {
"psr-4": {
"Hyperized\\Hostfact\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Hyperized\\Hostfact\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Hyperized\\Hostfact\\Providers\\HostfactServiceProvider"
],
"aliases": {
"Hostfact": "Hyperized\\Hostfact\\Providers\\HostfactServiceProvider"
}
}
},
"scripts": {
"test": [
"@phpmd --version",
"@phpmd --strict src text cyclomatic.xml",
"@psalm --version",
"@psalm",
"@phpstan --version",
"@phpstan analyse",
"@phpcbf --version",
"@phpcbf src",
"@phpcs --version",
"@phpcs src --standard=PSR2",
"@phpmnd --version",
"@phpmnd src",
"@phpunit --version",
"@phpunit --configuration phpunit.xml.dist",
"@infection --version",
"@infection"
],
"test-github": [
"@test"
],
"phpunit": "vendor/phpunit/phpunit/phpunit",
"phpmd": "vendor/bin/phpmd",
"psalm": "vendor/bin/psalm",
"phpstan": "vendor/bin/phpstan",
"phpcs": "vendor/bin/phpcs",
"phpcbf": "vendor/bin/phpcbf",
"phpmnd": "vendor/bin/phpmnd src",
"infection": "vendor/bin/infection",
"major": [
"composer update",
"@update-major",
"@update-major-dev"
],
"update-major": "jq -r '.require | keys[]' composer.json | xargs composer require --update-with-all-dependencies",
"update-major-dev": "jq -r '.\"require-dev\" | keys[]' composer.json | xargs composer require --dev --update-with-all-dependencies"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"infection/extension-installer": true
}
}
}