-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
38 lines (38 loc) · 972 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
34
35
36
37
38
{
"name": "kr-digital/names-detector",
"description": "Detect name and gender from a given string",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Andrew Alyamovsky",
"email": "[email protected]"
}
],
"scripts": {
"test": "./vendor/bin/phpunit --configuration=phpunit.xml",
"cs-fix": "./vendor/bin/php-cs-fixer fix -vv ./src/ ./tests/ --config=.php_cs.dist"
},
"require": {
"ext-json": "*",
"php": ">=7.1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16.3",
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^7.5.20"
},
"autoload": {
"psr-4": {
"KRDigital\\NamesDetector\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"KRDigital\\NamesDetector\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}