-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (53 loc) · 1.43 KB
/
composer.json
File metadata and controls
58 lines (53 loc) · 1.43 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
{
"name": "remessage/client",
"description": "PHP client for Re Message",
"type": "library",
"license": "Apache-2.0",
"homepage": "https://dev.remessage.ru/packages/client",
"authors": [
{
"name": "Oleg Kozlov",
"email": "h1karo@remessage.ru",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"RM\\Component\\Client\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RM\\Component\\Client\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.1",
"ext-mbstring": "*",
"remessage/message": "^2.2.0",
"psr/http-message": "^1.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/event-dispatcher": "^1.0",
"psr/log": "^3.0",
"doctrine/collections": "^1.6",
"doctrine/annotations": "^1.10",
"symfony/config": "^6.0",
"symfony/yaml": "^6.0"
},
"require-dev": {
"symfony/http-client": "^6.0",
"symfony/event-dispatcher": "^6.0",
"nyholm/psr7": "^1.2",
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^3.5"
},
"config": {
"sort-packages": false
},
"scripts": {
"test": "phpunit",
"lint": "php-cs-fixer fix --show-progress=dots",
"lint:ci": "php-cs-fixer fix --dry-run -v --show-progress=dots --diff"
}
}