forked from coduo/php-humanizer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.05 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.05 KB
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
39
40
41
42
43
44
{
"name": "coduo/php-humanizer",
"type": "library",
"keywords": ["php", "humanize", "humanizer"],
"license": "MIT",
"authors": [
{
"name": "Michał Dąbrowski",
"email": "dabrowski@brillante.pl"
},
{
"name": "Norbert Orzechowicz",
"email": "norbert@orzechowicz.pl"
}
],
"require": {
"php": ">=5.3.0",
"symfony/config": "^2.3|^3.0",
"symfony/translation": "^2.3|^3.0",
"symfony/yaml": "^2.3|^3.0"
},
"require-dev": {
"thunderer/shortcode": "~0.5",
"phpspec/phpspec": "^2",
"phpunit/phpunit": "^4.5|^5.0"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": {
"": "src",
"Coduo\\PHPHumanizer\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
}
},
"suggest": {
"ext-intl": "Required if you are going to use humanizer with different locales than en_EN"
}
}