Skip to content

Commit

Permalink
upgrade to latest pearfarm spec format
Browse files Browse the repository at this point in the history
  • Loading branch information
apinstein committed Dec 23, 2009
1 parent 39a753b commit 5b14351
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pearfarm.spec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

$spec = PEARFarm_Specification::newSpec(array(PEARFarm_Specification::OPT_BASEDIR => dirname(__FILE__)))
$spec = PackageSpec::create(array(PackageSpec::OPT_BASEDIR => dirname(__FILE__)))
->setName('iphp')
->setChannel('pear.nimblize.com')
->setSummary('PHP Shell')
Expand All @@ -9,9 +9,10 @@ $spec = PEARFarm_Specification::newSpec(array(PEARFarm_Specification::OPT_BASEDI
->setReleaseStability('stable')
->setApiVersion('1.0.0')
->setApiStability('stable')
->setLicense(PEARFarm_Specification::LICENSE_MIT)
->setLicense(PackageSpec::LICENSE_MIT)
->setNotes('First release of iphp.')
->addMaintainer('lead', 'Alan Pinstein', 'apinstein', 'apinstein@mac.com')
->addGitFiles()
->addExcludeFiles('.gitignore')
->addExecutable('iphp')
;

0 comments on commit 5b14351

Please sign in to comment.