-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
64 lines (64 loc) · 1.72 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
{
"name": "testmonitor/custify-client",
"description": "The TestMonitor Custify Client.",
"type": "library",
"keywords": ["testmonitor", "custify", "client"],
"authors": [
{
"name": "Thijs Kok",
"email": "[email protected]",
"homepage": "https://www.testmonitor.com/",
"role": "Lead Developer"
},
{
"name": "Stephan Grootveld",
"email": "[email protected]",
"homepage": "https://www.testmonitor.com/",
"role": "Developer"
},
{
"name": "Frank Keulen",
"email": "[email protected]",
"homepage": "https://www.testmonitor.com/",
"role": "Developer"
},
{
"name": "Muriël Nooder",
"email": "[email protected]",
"homepage": "https://www.testmonitor.com/",
"role": "Developer"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.1",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^v3.1",
"mockery/mockery": "~1.0",
"phpunit/phpunit": "^10.0",
"squizlabs/php_codesniffer": "^3.7"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"TestMonitor\\Custify\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TestMonitor\\Custify\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"prefer-stable": true,
"license": "MIT"
}