library zf-deals
This is the companion to the book 'Webentwicklung mit Zend Framework 2'
zf2book/zf-deals
This is the companion to the book 'Webentwicklung mit Zend Framework 2'
- Saturday, October 20, 2012
- by michael-romer
- Repository
- 3 Watchers
- 8 Stars
- 113 Installations
- PHP
- 0 Dependents
- 0 Suggesters
- 6 Forks
- 2 Open issues
- 1 Versions
- 0 % Grown
Install
Main Install
- Add the following statement to the requirements-block of your composer.json: "zf2book/zf-deals": "dev-master","dlu/dlutwbootstrap": "dev-master"
- Run a composer update to download the libraries needed.
- Add "ZfDeals" and "DluTwBootstrap" to the list of active modules in
application.config.php
- Import the SQL schema located in
/vendor/zf2book/zf-deals/data/structure.sql
- Copy
/vendor/zf2book/zf-deals/data/public/zf-deals
to the public folder of your application.
Post Install
-
If you do not already have a valid Zend\Db\Adapter\Adapter in your service
manager configuration, put the following in /config/autoload/db.local.php
:, (*1)
<?php
$dbParams = array(
'database' => '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'],
));
},
),
),
);
-
Navigate to http://yourproject/deals or http://yourproject/deals/admin, (*2)