-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.14 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
{
"name": "amesplash/campaignmonitor-log",
"description": "Campaign Monitor PSR-3 Log Decorator",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Merlin Diavova",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2,<7.4",
"psr/log": "^1.1",
"campaignmonitor/createsend-php": "^6.0"
},
"require-dev": {
"eloquent/phony-phpunit": "^5.0",
"phpstan/phpstan": "^0.11.5",
"squizlabs/php_codesniffer": "^3.4"
},
"provide": {
"psr/log-implementation": "1.0"
},
"autoload": {
"psr-4": {
"Amesplash\\CampaignMonitorLog\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Amesplash\\CampaignMonitorLog\\Test\\": "test/"
}
},
"scripts": {
"test": "./vendor/bin/phpunit",
"check-style": "./vendor/bin/phpcs src test",
"fix-style": "./vendor/bin/phpcbf src test"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}