Skip to content

Commit 5884969

Browse files
committed
Merge pull request #1 from pear/topics/composer-for-pear
Updated/New Composer support for Text_LanguageDetect
2 parents 33dbfcf + 41ef4f5 commit 5884969

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# composer related
2+
composer.lock
3+
composer.phar
4+
vendor

composer.json

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"authors": [
3+
{
4+
"email": "[email protected]",
5+
"name": "Nicholas Pisarro",
6+
"role": "Lead"
7+
}
8+
],
9+
"autoload": {
10+
"psr-0": {
11+
"Text": "./"
12+
}
13+
},
14+
"description": "More info available on: http://pear.php.net/package/Text_LanguageDetect",
15+
"include-path": [
16+
"./"
17+
],
18+
"license": "BSD",
19+
"name": "pear/text_languagedetect",
20+
"support": {
21+
"issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Text_LanguageDetect",
22+
"source": "https://github.com/pear/Text_LanguageDetect"
23+
},
24+
"type": "library",
25+
"suggest": {
26+
"ext-mbstring": "May require the mbstring PHP extension"
27+
},
28+
"require": {
29+
"pear/pear_exception": "*"
30+
},
31+
"require-dev": {
32+
"phpunit/phpunit": "*"
33+
}
34+
}

0 commit comments

Comments
 (0)