-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
42 lines (42 loc) · 1.25 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
{
"name": "mehdichaouch/email-to-slack",
"description": "A hack to read emails on a Slack channel while staying in free plan 🏴☠",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Mehdi Chaouch",
"role" : "lead",
"homepage" : "https://advocodo.com"
}
],
"require" : {
"php" : ">=5.4.0",
"squizlabs/php_codesniffer" : "^2.6 || ^3.1.0",
"phpcsstandards/phpcsutils" : "^1.0"
},
"require-dev" : {
"phpunit/phpunit": "^4.8 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || >=9.0 <9.5.20",
"phpcsstandards/phpcsdevtools": "^1.0",
"phpcompatibility/php-compatibility": "*"
},
"conflict": {
"squizlabs/php_codesniffer": "2.6.2"
},
"suggest" : {
"roave/security-advisories": "dev-master || Helps prevent installing dependencies with known security issues."
},
"minimum-stability": "alpha",
"prefer-stable": true,
"scripts" : {
"phpcs": [
"phpcs -ps"
],
"phpcs:compatibility": [
"@phpcs --standard=PHPCompatibility"
]
},
"scripts-descriptions": {
"phpcs:compatibility": "Run PHPCompatibility checks. One or more files or directories must be specified."
}
}