dersam/carty

This package is abandoned and no longer maintained. No replacement package was suggested.
There is no license information available for the latest version (dev-master) of this package.

Maintainers

Details

github.com/dersam/carty

Source

Issues

Installs: 29

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Language:JavaScript

dev-master 2015-01-18 19:41 UTC

This package is auto-updated.

Last update: 2022-07-22 16:49:01 UTC


README

#Carty

Basic PHP Shopping Cart

Laravel package

Tools used:

  • PHP 5.4
  • MySQL
  • Laravel 4.2
  • jQuery
  • Handlebars

Composer package on Packagist: https://packagist.org/packages/dersam/carty

##Installation Instructions

  1. Install Laravel and setup your database connection in app/config/database.php

  2. Add to composer.json require:

    "dersam/carty": "dev-master"

  3. Install composer packages

    composer install

  4. Add the Carty service provider to the provider array in app/config/app.php

    'Dersam\Carty\CartyServiceProvider'

  5. Publish the public assets

    php artisan asset:publish

  6. Create the database tables (will use your application's connection string from app/config/database.php)

    php artisan migrate --package="dersam/carty"

  7. Run the database seed if you want the demo data

    php artisan db:seed --class=CartyDemoSeed