Skip to content

Commit b699470

Browse files
committed
Merge pull request #1 from pear/topics/composer-for-pear
Updated/New Composer support for XML_Parser
2 parents 6718f5b + a1330c8 commit b699470

File tree

2 files changed

+50
-0
lines changed

2 files changed

+50
-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: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
"authors": [
3+
{
4+
"email": "[email protected]",
5+
"name": "Stephan Schmidt",
6+
"role": "Lead"
7+
},
8+
{
9+
"email": "[email protected]",
10+
"name": "Chuck Burgess",
11+
"role": "Lead"
12+
},
13+
{
14+
"email": "[email protected]",
15+
"name": "Stig Sæther Bakken",
16+
"role": "Developer"
17+
},
18+
{
19+
"email": "[email protected]",
20+
"name": "Tomas V.V.Cox",
21+
"role": "Developer"
22+
}
23+
],
24+
"autoload": {
25+
"psr-0": {
26+
"XML_Parser": "./"
27+
}
28+
},
29+
"description": "A github mirror",
30+
"include-path": [
31+
"./"
32+
],
33+
"license": "BSD License",
34+
"name": "pear/xml_parser",
35+
"support": {
36+
"issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=XML_Parser",
37+
"source": "https://github.com/pear/XML_Parser"
38+
},
39+
"type": "library",
40+
"require": {
41+
"pear/pear_exception": "*"
42+
},
43+
"require-dev": {
44+
"phpunit/phpunit": "*"
45+
}
46+
}

0 commit comments

Comments
 (0)