-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
31 lines (31 loc) · 847 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
{
"name": "divineomega/laravel-offensive-validation-rule",
"description": "Laravel validation rule that checks if a string is offensive.",
"type": "library",
"require": {
"laravel/framework": "^5.5||^6.0||^7.0",
"divineomega/is_offensive": "^1.4.0"
},
"require-dev": {
"orchestra/testbench": "^3.5",
"phpunit/phpunit": "^6.0",
"satooshi/php-coveralls": "^2.0"
},
"license": "LGPL-3.0-only",
"authors": [
{
"name": "Jordan Hall",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"DivineOmega\\LaravelOffensiveValidationRule\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"DivineOmega\\LaravelOffensiveValidationRule\\Tests\\": "./tests/"
}
}
}