-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
95 lines (95 loc) · 2.93 KB
/
composer.json
File metadata and controls
95 lines (95 loc) · 2.93 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
{
"name": "nivseb/php-mock-server-connector",
"description": "Small tool to use mock-server/mockserver in a easy way from php based tests.",
"type": "library",
"keywords": [
"php",
"mock",
"mocking",
"test",
"testing",
"phpunit",
"request"
],
"homepage": "https://github.com/nivseb/php-mock-server-connector",
"support": {
"issues": "https://github.com/nivseb/php-mock-server-connector/issues",
"source": "https://github.com/nivseb/php-mock-server-connector"
},
"authors": [
{
"name": "Marvin Naumann",
"email": "1013829+nivseb@users.noreply.github.com",
"homepage": "https://github.com/nivseb",
"role": "Author"
}
],
"license": "MIT",
"autoload": {
"psr-4": {
"Nivseb\\PhpMockServerConnector\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": "^8.2",
"guzzlehttp/guzzle": "^7.8"
},
"scripts": {
"check": [
"@composer validate",
"@phpstan"
],
"check-dev": [
"@composer validate",
"@phpstan-dev"
],
"analyse": [
"@phpstan"
],
"analyse-dev": [
"@phpstan-dev"
],
"uniform": [
"@rector",
"@format"
],
"phpstan": "vendor/bin/phpstan analyse -c ./dev/config/phpstan.neon",
"phpstan-dev": "vendor/bin/phpstan analyse -c ./dev/config/phpstan-dev.neon",
"rector": "vendor/bin/rector process -c ./dev/config/rector.php",
"format": "vendor/bin/php-cs-fixer fix --diff --config=./dev/config/php-cs-fixer.php",
"format:check": "vendor/bin/php-cs-fixer check --config=./dev/config/php-cs-fixer.php",
"test": "vendor/bin/pest --cache-directory=tests/.cache",
"test:parallel": "@test --parallel",
"test:coverage:line": "XDEBUG_MODE=coverage vendor/bin/pest --cache-directory=tests/test_results/.cache --coverage",
"test:coverage:path": "XDEBUG_MODE=coverage vendor/bin/pest --cache-directory=tests/test_results/.cache --coverage --path-coverage"
},
"require-dev": {
"pestphp/pest": "^2.36",
"pestphp/pest-plugin-faker": "^2.0",
"friendsofphp/php-cs-fixer": "^3.64",
"kubawerlos/php-cs-fixer-custom-fixers": "^3.22",
"mockery/mockery": "^1.6",
"phpstan/phpstan": "^1.12",
"rector/rector": "^1.2"
},
"config": {
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"pestphp/pest-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-main": "3.x-dev"
}
}
}