-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
69 lines (69 loc) · 1.42 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
{
"name": "qoboltd/phrets",
"type": "library",
"license": "MIT",
"description": "RETS library in PHP",
"keywords": [
"rets",
"mls"
],
"homepage": "https://github.com/QoboLtd/PHRETS",
"authors": [
{
"name": "Qobo Ltd",
"email": "[email protected]",
"homepage": "https://qobogroup.com/",
"role": "Developer"
},
{
"name": "Troy Davisson",
"email": "[email protected]",
"homepage": "http://troda.com",
"role": "Developer"
},
{
"name": "Max Lispky",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=8.2",
"ext-json": "*",
"ext-simplexml": "*",
"guzzlehttp/guzzle": "^7.2",
"psr/log": "^3.0"
},
"require-dev": {
"monolog/monolog": "^3.8",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpunit/phpunit": "^11.0",
"slevomat/coding-standard": "^8.15",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"PHRETS\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PHRETS\\Test\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
},
"scripts": {
"stan": [
"phpcs --warning-severity=0",
"phpstan"
],
"test": "phpunit"
}
}