-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpearfarm.spec
More file actions
17 lines (16 loc) · 756 Bytes
/
Copy pathpearfarm.spec
File metadata and controls
17 lines (16 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
$spec = Pearfarm_PackageSpec::create(array(Pearfarm_PackageSpec::OPT_BASEDIR => dirname(__FILE__)))
->setName('mp')
->setChannel('apinstein.pearfarm.org')
->setSummary('MP: Migrations for PHP')
->setDescription('A generic db migrations engine for PHP.')
->setReleaseVersion('1.0.3')
->setReleaseStability('stable')
->setApiVersion('1.0.0')
->setApiStability('stable')
->setLicense(Pearfarm_PackageSpec::LICENSE_MIT)
->setNotes('See http://github.com/apinstein/mp.')
->addMaintainer('lead', 'Alan Pinstein', 'apinstein', 'apinstein@mac.com')
->addGitFiles()
->addExecutable('mp')
;