forked from nojimage/twitter-text-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.31 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
{
"name": "nojimage/twitter-text-php",
"description": "A library of PHP classes that provide auto-linking and extraction of usernames, lists, hashtags and URLs from tweets.",
"keywords": ["twitter", "text", "autolink", "extract"],
"homepage": "https://github.com/nojimage/twitter-text-php",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Matt Sanford",
"email": "[email protected]",
"homepage":"http://mzsanford.com"
},
{
"name": "Mike Cochrane",
"email": "[email protected]",
"homepage":"http://mikenz.geek.nz"
},
{
"name": "Nick Pope",
"email": "[email protected]",
"homepage":"http://www.nickpope.me.uk"
},
{
"name": "Takashi Nojima",
"homepage":"http://php-tips.com"
}
],
"repositories": [
{
"type": "package",
"package": {
"name": "twitter/twitter-text-conformance",
"version": "v1.8.0",
"source": {
"url": "https://github.com/twitter/twitter-text-conformance.git",
"type": "git",
"reference": "v1.8.0"
}
}
}
],
"require": {
"php": ">=5.2.8"
},
"require-dev": {
"php": ">=5.3.3",
"symfony/yaml": "*",
"twitter/twitter-text-conformance": "1.8.0"
},
"autoload": {
"psr-0": {
"Twitter_": "lib/"
}
}
}