forked from snowcap/Emarsys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.31 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
{
"name": "mention-me/emarsys",
"description": "Emarsys API client",
"require": {
"php": "^8.2",
"psr/http-client": "^1.0.1",
"ext-json": "*"
},
"require-dev": {
"php-http/mock-client": "^1.4.1",
"guzzlehttp/guzzle": "^7.0.1",
"http-interop/http-factory-guzzle": "^1.0.0",
"rector/rector": "^2.0",
"squizlabs/php_codesniffer": "^3.9",
"vimeo/psalm": "^5.23",
"phpunit/phpunit": "^10"
},
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"php-http/discovery": true
}
},
"autoload": {
"psr-4": {
"Snowcap\\Emarsys\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Snowcap\\Emarsys\\Tests\\Unit\\": "tests/Unit/Suites/",
"Snowcap\\Emarsys\\Tests\\Integration\\": "tests/Integration/Suites/"
}
},
"scripts": {
"test": "phpunit tests/",
"rector": "rector --dry-run",
"phpcs": "phpcs src/ tests/",
"psalm": "psalm"
},
"license": "MIT",
"authors": [
{
"name": "Jérôme Poskin",
"email": "[email protected]"
},
{
"name": "Ryan Maber",
"email": "[email protected]"
}
]
}