-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
75 lines (75 loc) · 1.65 KB
/
composer.json
File metadata and controls
75 lines (75 loc) · 1.65 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
{
"name": "michaelj2324/php-rest-client",
"description": "An extensible framework for working with REST APIs",
"license": "MIT",
"authors": [
{
"name": "Mike Russell",
"email": "mrussell@sugarcrm.com",
"role": "Developer"
},
{
"name": "Tevfik Tümer",
"email": "ttuemer@sugarcrm.com",
"role": "Developer"
}
],
"keywords": [
"rest",
"api"
],
"require": {
"php": ">=8.0",
"guzzlehttp/guzzle": ">=6.3.3",
"psr/log": ">=1",
"psr/simple-cache": "1.*|2.*|3.*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "9.*",
"friendsofphp/php-cs-fixer": "^v3",
"colinodell/psr-testlogger": "^1",
"rector/rector": "1.*"
},
"autoload": {
"psr-4": {
"MRussell\\REST\\": "src/",
"MRussell\\REST\\Tests\\": "tests/"
}
},
"autoload-dev": {
"psr-4": {
"MRussell\\REST\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"symfony/flex": true
}
},
"scripts": {
"test": [
"phpunit"
],
"test:coverage": [
"@putenv XDEBUG_MODE=coverage",
"phpunit --coverage-clover=\"coverage/clover.xml\""
],
"test:coverage-html": [
"@putenv XDEBUG_MODE=coverage",
"phpunit --coverage-html=\"coverage\""
],
"quality:check": [
"php vendor/bin/php-cs-fixer fix . --rules=@PER-CS2.0 --dry-run"
],
"quality:fix": [
"php vendor/bin/php-cs-fixer fix . --rules=@PER-CS2.0"
],
"quality:diff": [
"php vendor/bin/php-cs-fixer fix . --rules=@PER-CS2.0 --dry-run --diff"
],
"docs": [
"php ./tools/phpDocumentor -d ./src -t ./docs/"
]
}
}