Skip to content

Commit a569e59

Browse files
committed
Merge pull request pear#1 from pear/topics/composer-for-pear
Updated/New Composer support for Math_Numerical_RootFinding
2 parents 7f146a6 + 1dd1e6b commit a569e59

File tree

2 files changed

+40
-0
lines changed

2 files changed

+40
-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: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"authors": [
3+
{
4+
"email": "[email protected]",
5+
"name": "Firman Wandayandi",
6+
"role": "Lead"
7+
},
8+
{
9+
"email": "[email protected]",
10+
"name": "Matthew Fonda",
11+
"role": "Lead"
12+
}
13+
],
14+
"autoload": {
15+
"psr-0": {
16+
"Math": "./"
17+
}
18+
},
19+
"description": "More info available on: http://pear.php.net/package/Math_Numerical_RootFinding",
20+
"include-path": [
21+
"./"
22+
],
23+
"license": "BSD License",
24+
"name": "pear/math_numerical_rootfinding",
25+
"support": {
26+
"issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Math_Numerical_RootFinding",
27+
"source": "https://github.com/pear/Math_Numerical_RootFinding"
28+
},
29+
"type": "library",
30+
"require": {
31+
"pear/pear_exception": "*"
32+
},
33+
"require-dev": {
34+
"phpunit/phpunit": "*"
35+
}
36+
}

0 commit comments

Comments
 (0)