forked from urakozz/php-emoji-regex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (41 loc) · 933 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
39
40
41
42
43
44
45
{
"name": "kozz/emoji-regex",
"type": "library",
"description": "Emoji regex parser",
"keywords": ["Emoji", "regex", "regexp"],
"homepage": "https://github.com/urakozz/php-emoji-regex",
"license": "MIT",
"authors": [
{
"name": "Yury Kozyrev",
"email": "urakozz@gmail.com",
"homepage": "https://github.com/urakozz"
}
],
"require": {
"php": ">=5.4.0"
},
"suggest": {
"php": ">=5.6.8"
},
"autoload": {
"psr-4": {
"Kozz\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Kozz\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "~4.2",
"codeclimate/php-test-reporter": "dev-master"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"minimum-stability": "stable"
}