-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpearfarm.spec
More file actions
16 lines (15 loc) · 836 Bytes
/
pearfarm.spec
File metadata and controls
16 lines (15 loc) · 836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
$spec = Pearfarm_PackageSpec::create(array(Pearfarm_PackageSpec::OPT_BASEDIR => dirname(__FILE__)))
->setName('fixturenator')
->setChannel('apinstein.pearfarm.org')
->setSummary('A factory-based fixture generator. Inspired by http://github.com/thoughtbot/factory_girl but thoughtfully ported to PHP.')
->setDescription('AWESOME.')
->setReleaseVersion('0.0.6')
->setReleaseStability('alpha')
->setApiVersion('0.0.5')
->setApiStability('alpha')
->setLicense(Pearfarm_PackageSpec::LICENSE_MIT)
->setNotes('http://github.com/apinstein/fixturenator')
->addMaintainer('lead', 'Alan Pinstein', 'apinstein', 'apinstein@mac.com')
->addFilesSimple('Fixturenator.php')
;