-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 900 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 900 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
{
"name": "detectlanguage/detectlanguage",
"description": "Language Detection API PHP Client",
"keywords": ["detect", "language", "api", "client", "detection"],
"homepage": "https://github.com/detectlanguage/detectlanguage-php",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Laurynas Butkus"
}
],
"require": {
"ext-json": "*",
"php": ">=5.3.0"
},
"require-dev": {
"yoast/phpunit-polyfills": "^1.0"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-0": {
"DetectLanguage": "lib/"
}
},
"scripts": {
"test": "php -d memory_limit=512M vendor/phpunit/phpunit/phpunit",
"test-silent": "php -d memory_limit=512M -d error_reporting='E_ALL & ~E_DEPRECATED & ~E_USER_DEPRECATED' vendor/phpunit/phpunit/phpunit"
}
}