-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
111 lines (111 loc) · 3.62 KB
/
composer.json
File metadata and controls
111 lines (111 loc) · 3.62 KB
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
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "jooservices/client",
"description": "A robust, layered HTTP Client wrapper for JOOservices",
"type": "library",
"version": "1.2.2",
"license": "MIT",
"authors": [
{
"name": "JOOservices",
"email": "contact@jooservices.com"
}
],
"require": {
"php": "^8.5",
"guzzlehttp/guzzle": "^7.9",
"jooservices/dto": "^1.0",
"mongodb/laravel-mongodb": "^5.6",
"monolog/monolog": "^3.10",
"psr/log": "^3.0",
"psr/simple-cache": "^3.0",
"symfony/options-resolver": "^7.0"
},
"require-dev": {
"captainhook/captainhook": "^5.25",
"captainhook/plugin-composer": "^5.3",
"friendsofphp/php-cs-fixer": "^3.66",
"laravel/pint": "^1.18",
"mockery/mockery": "^1.6",
"phpbench/phpbench": "^1.4",
"phpmd/phpmd": "^2.15",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^12.0",
"squizlabs/php_codesniffer": "^3.10",
"symfony/filesystem": "^7.4",
"symfony/var-dumper": "^7.0"
},
"autoload": {
"psr-4": {
"JOOservices\\Client\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "@php vendor/bin/phpunit",
"test:coverage": [
"@php vendor/bin/phpunit --coverage-html coverage --coverage-clover coverage/clover.xml",
"@php scripts/coverage-check.php 98"
],
"test:unit": "@php vendor/bin/phpunit --group=unit",
"test:integration": "@php vendor/bin/phpunit --group=integration",
"test:arch": "@php vendor/bin/phpunit --group=arch",
"lint:pint": "@php vendor/bin/pint --test",
"lint:pint:fix": "@php vendor/bin/pint",
"lint:cs": "@php vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --dry-run --diff --sequential",
"lint:cs:fix": "@php vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --sequential",
"lint:phpcs": "@php vendor/bin/phpcs --standard=phpcs.xml",
"lint:phpstan": "@php vendor/bin/phpstan analyse --configuration=phpstan.neon --memory-limit=512M",
"lint:phpmd": "@php -d error_reporting='E_ALL & ~E_DEPRECATED & ~E_USER_DEPRECATED' vendor/bin/phpmd src text phpmd.xml",
"lint": [
"@lint:pint",
"@lint:phpcs",
"@lint:phpstan"
],
"lint:all": [
"@lint",
"@lint:phpmd",
"@lint:cs"
],
"lint:fix": [
"@lint:pint:fix",
"@lint:cs:fix"
],
"phpstan": "@lint:phpstan",
"analyse": "@lint:phpstan",
"phpcs": "@lint:phpcs",
"check:cs": "@lint:phpcs",
"phpmd": "@lint:phpmd",
"pint": "@lint:pint",
"pint:fix": "@lint:pint:fix",
"fix:cs": "@lint:fix",
"format": "@lint:fix",
"hook:install": "vendor/bin/captainhook install",
"check": [
"@lint:all",
"@test"
],
"ci": [
"@lint:all",
"@test:coverage"
],
"quality": [
"@check"
],
"post-install-cmd": "vendor/bin/captainhook install --force --skip-existing",
"post-update-cmd": "vendor/bin/captainhook install --force --skip-existing"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"captainhook/plugin-composer": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}