-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.93 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.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
{
"name": "pnz/mattermost-client",
"description": "Mattermost APi Client for PHP",
"license": "MIT",
"type": "library",
"keywords": ["api", "mattermost"],
"authors": [
{
"name": "Emanuele Panzeri - ThePanz",
"email": "thepaz@gmail.com",
"role": "Developer"
}
],
"require": {
"php": "^8.3",
"ext-json": "*",
"php-http/client-common": "^2.0",
"php-http/discovery": "^1.17",
"php-http/httplug": "^2.1",
"php-http/multipart-stream-builder": "^1.1",
"psr/http-client-implementation": "*",
"psr/http-factory-implementation": "*",
"psr/http-message": "^2.0"
},
"require-dev": {
"nyholm/psr7": "^1.8",
"php-http/curl-client": "^2.4",
"php-http/mock-client": "^1.6",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1.38",
"phpstan/phpstan-phpunit": "^2.0",
"rector/rector": "^2.3"
},
"autoload": {
"psr-4": {
"Pnz\\MattermostClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pnz\\MattermostClient\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"php-http/discovery": false
}
},
"scripts": {
"ci": ["@cs:check", "@phpstan", "@phpunit" ],
"cs:fix": "tools/php-cs-fixer.phar fix --verbose --ansi",
"cs:check": "tools/php-cs-fixer.phar fix --dry-run --verbose --ansi",
"phpstan": "vendor/bin/phpstan analyze",
"phpunit": "tools/phpunit.phar",
"phpunit:coverage:text": "tools/phpunit.phar --coverage-text",
"phpunit:coverage:ci": "tools/phpunit.phar --coverage-clover=build/coverage.xml",
"rector:fix": "vendor/bin/rector",
"rector:check": "vendor/bin/rector --dry-run"
}
}