forked from jcrowe206/BadWordFilter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 821 Bytes
/
Copy pathcomposer.json
File metadata and controls
34 lines (34 loc) · 821 Bytes
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
{
"name": "jcrowe/bad-word-filter",
"description": "PHP Bad word filtering. Checks for the existence of a bad word in a string or array.",
"license": "MIT",
"authors": [
{
"name": "Jonathan Crowe",
"email": "jcrowe206@gmail.com"
}
],
"require": {
"php": "8.*",
"illuminate/support": ">=4.0.0"
},
"require-dev": {
"phpunit/phpunit": "4.5.1",
"mockery/mockery": "0.9.*",
"satooshi/php-coveralls": "1.0.1"
},
"autoload": {
"classmap": [
"src/migrations"
],
"psr-0": {
"JCrowe\\BadWordFilter\\": "src/"
}
},
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"kylekatarnls/update-helper": true
}
}
}