-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
76 lines (76 loc) · 2.76 KB
/
composer.json
File metadata and controls
76 lines (76 loc) · 2.76 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
{
"name": "macpaw/extended_mock_http_client",
"type": "library",
"description": "This repository provides mocks for Symfony HTTP Client, it more flexible than default Symfony mock",
"keywords": ["http-client", "mock", "testing", "fixtures", "symfony", "development"],
"require": {
"php": ">=8.1",
"ext-json": "*",
"symfony/cache": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/config": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/http-client": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/http-foundation": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/http-kernel": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/yaml": "^4.4 || ^5.0 || ^6.0 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5 || 9.5",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.5.3",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.1",
"phpstan/phpstan-strict-rules": "^1.1",
"phpstan/phpstan-symfony": "^1.1",
"squizlabs/php_codesniffer": "^3.5"
},
"scripts": {
"phpstan": "./vendor/bin/phpstan analyse -l 4",
"code-style": "./vendor/bin/phpcs",
"code-style-fix": "./vendor/bin/phpcbf",
"phpunit": "./vendor/bin/phpunit",
"dev-tests": [
"composer validate",
"@code-style",
"@phpunit",
"@phpstan"
],
"ci-checks": [
"composer validate --strict > ./reports/composer-validate.txt 2>&1 || true",
"vendor/bin/phpcs --report=xml --report-file=./reports/phpcs.xml || true",
"vendor/bin/phpunit --log-junit ./reports/phpunit.xml --cache-result-file=./reports/ || true",
"php -d memory_limit=-1 ./vendor/bin/phpstan --error-format=checkstyle analyse -l 4 -c phpstan.neon.dist > ./reports/phpstan.xml || true"
]
},
"autoload": {
"psr-4": {
"ExtendedMockHttpClient\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ExtendedMockHttpClient\\Tests\\": "tests/"
}
},
"license": "MIT",
"authors": [
{
"name": "Aleksey Tupichenkov",
"email": "alekseytupichenkov@gmail.com",
"homepage": "https://github.com/alekseytupichenkov",
"role": "Author"
},
{
"name": "Yozhef Hisem",
"email": "hisemjo@gmail.com",
"homepage": "https://github.com/Yozhef",
"role": "Contributor"
}
],
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}