forked from apinstein/iphp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpearfarm.spec
More file actions
18 lines (17 loc) · 786 Bytes
/
pearfarm.spec
File metadata and controls
18 lines (17 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
$spec = Pearfarm_PackageSpec::create(array(Pearfarm_PackageSpec::OPT_BASEDIR => dirname(__FILE__)))
->setName('iphp')
->setChannel('apinstein.pearfarm.org')
->setSummary('PHP Shell')
->setDescription('An interactive PHP Shell (or Console, or REPL).')
->setReleaseVersion('1.0.5')
->setReleaseStability('stable')
->setApiVersion('1.0.0')
->setApiStability('stable')
->setLicense(Pearfarm_PackageSpec::LICENSE_MIT)
->setNotes('First release of iphp.')
->addMaintainer('lead', 'Alan Pinstein', 'apinstein', 'apinstein@mac.com')
->addGitFiles()
->addExcludeFiles('.gitignore')
->addExecutable('iphp')
;