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
29 lines (29 loc) · 722 Bytes
/
Copy pathcomposer.json
File metadata and controls
29 lines (29 loc) · 722 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
{
"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": ">=4.0.0",
"illuminate/support": ">=4.0.0"
},
"require-dev": {
"phpunit/phpunit": "4.5.1",
"mockery/mockery": "0.9.*",
"satooshi/php-coveralls": "dev-master"
},
"autoload": {
"classmap": [
"src/migrations"
],
"psr-0": {
"JCrowe\\BadWordFilter\\": "src/"
}
},
"minimum-stability": "stable"
}