Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yanickrochon/speckbilling
Invoice and billing system for SpeckCommerce
https://github.com/yanickrochon/speckbilling
Last synced: about 1 month ago
JSON representation
Invoice and billing system for SpeckCommerce
- Host: GitHub
- URL: https://github.com/yanickrochon/speckbilling
- Owner: yanickrochon
- Created: 2012-10-13T19:10:05.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2012-10-13T19:21:17.000Z (about 12 years ago)
- Last Synced: 2024-10-05T01:46:50.399Z (about 1 month ago)
- Language: PHP
- Size: 93.8 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
SpeckBilling
=======
Version 0.0.1 Created by Yanick RochonIntroduction
------------SpeckBilling contains all features to generate and store invoice and billing information.
Requirements
------------* [Zend Framework 2](https://github.com/zendframework/zf2) (latest master)
* [ZfcBase](https://github.com/ZF-Commons/ZfcBase) (latest master).
* [SpeckAddress](https://github.com/speckcommerce/SpeckAddress.git) (latest master).
* [ZfcUser](https://github.com/ZF-Commons/ZfcUser) *(optional)* (latest master).Features / Goals
----------------* configurable recurring billing
* send email invoices / notifications (ZfcMail?)
* generate downloadable (ex: PDF) invoices and reportsInstallation
------------### Main Setup
1. Install the required modules by cloning them into `./vendor/` and enabling them
in your `application.config.php` file.
2. Clone this project into your `./vendor/` directory and enable it in your
`application.config.php` file.
3. Import the SQL schema located in `./vendor/SpeckBilling/data/schema.sql`.### Post-Install: Zend\Db
1. If you do not already have a valid Zend\Db\Adapter\Adapter in your service
manager configuration, put the following in `./config/autoload/database.local.php`:'changeme',
'username' => 'changeme',
'password' => 'changeme',
'hostname' => 'changeme',
);return array(
'service_manager' => array(
'factories' => array(
'Zend\Db\Adapter\Adapter' => function ($sm) use ($dbParams) {
return new Zend\Db\Adapter\Adapter(array(
'driver' => 'pdo',
'dsn' => 'mysql:dbname='.$dbParams['database'].';host='.$dbParams['hostname'],
'database' => $dbParams['database'],
'username' => $dbParams['username'],
'password' => $dbParams['password'],
'hostname' => $dbParams['hostname'],
));
},
),
),
);Options
-------Coming soon.