forked from oblik/php-pluralization
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 717 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 717 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": "oblik/pluralization",
"description": "Pluralization according to Unicode",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Hristiyan Dodov",
"email": "h.dodov@gmail.com"
}
],
"scripts": {
"test": "phpunit --bootstrap ./vendor/autoload.php tests/suites --testdox"
},
"require": {},
"autoload": {
"files": [
"index.php"
],
"psr-4": {
"Oblik\\Pluralization\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Oblik\\Pluralization\\": "tests/classes/"
}
},
"require-dev": {
"phpunit/phpunit": "^8.3"
}
}