-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
44 lines (44 loc) · 1022 Bytes
/
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
{
"name": "dave13h/php-censor-cronlint-plugin",
"description": "PHP Censor plugin for Cron Linting",
"minimum-stability": "stable",
"type": "php-censor-plugin",
"keywords": [
"php",
"php-censor",
"testing",
"open-source",
"ci",
"continuous integration",
"cron",
"lint"
],
"homepage": "https://github.com/Dave13h/PHP-Censor-CronLint-Plugin",
"license": "BSD 3-Clause",
"authors": [
{
"name": "Dave13h",
"email": "dave@d3r.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.0"
},
"autoload": {
"psr-4": {
"PHPCensor\\Plugin\\": "src"
}
},
"extra": {
"php-censor": {
"pluginNamespace": "PHPCensor\\Plugin\\",
"suppliedPlugins": [
{
"name": "CronLint",
"class": "CronLint"
}
]
}
}
}