-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
33 lines (33 loc) · 919 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
{
"description": "Detox is a library to detect toxic text (comments/posts etc) of variable length with different patterns",
"type": "detox",
"name": "arthurkushman/detox",
"license": "MIT",
"authors": [
{
"name": "Arthur Kushman",
"email": "arthurkushman@gmail.com",
"role": "Developer"
}
],
"require": {
"php": "^7.1",
"ext-mbstring": "*"
},
"autoload": {
"psr-4": {
"detox\\": "src",
"detoxtests\\": "tests"
}
},
"require-dev": {
"phpunit/phpunit": ">=6.5",
"mockery/mockery": "~1.0",
"fzaninotto/faker": "^1.7"
},
"suggest": {
"solidry/api-generator": "PHP-code generator (based on OAS) for Laravel framework, with complete support of JSON-API data format"
},
"minimum-stability": "dev",
"prefer-stable": true
}