Skip to content

Commit 6528467

Browse files
authored
Create composer.json
1 parent 79465de commit 6528467

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed

composer.json

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"name": "dave13h/php-censor-cronlint-plugin",
3+
"description": "PHP Censor plugin for Cron Linting",
4+
"minimum-stability": "stable",
5+
"type": "php-censor-plugin",
6+
"keywords": [
7+
"php",
8+
"php-censor",
9+
"testing",
10+
"open-source",
11+
"ci",
12+
"continuous integration",
13+
"cron",
14+
"lint"
15+
],
16+
"homepage": "https://github.com/Dave13h/PHP-Censor-CronLint-Plugin",
17+
"license": "BSD 3-Clause",
18+
"authors": [
19+
{
20+
"name": "Dave13h",
21+
"email": "dave@d3r.com",
22+
"role": "Developer"
23+
}
24+
],
25+
"require": {
26+
"php": ">=7.0",
27+
"hollodotme/crontab-validator": "^1.0.*"
28+
},
29+
"autoload": {
30+
"psr-4": {
31+
"PHPCensor\\Plugin\\": "src"
32+
}
33+
},
34+
"extra": {
35+
"php-censor": {
36+
"pluginNamespace": "PHPCensor\\Plugin\\",
37+
"suppliedPlugins": [
38+
{
39+
"name": "CronLint",
40+
"class": "CronLint"
41+
}
42+
]
43+
}
44+
}
45+
}

0 commit comments

Comments
 (0)