https://github.com/inklabs/kommerce-laravel
Sample Laravel application using Zen Kommerce Core
https://github.com/inklabs/kommerce-laravel
ecommerce laravel php shopping-cart twig
Last synced: 3 months ago
JSON representation
Sample Laravel application using Zen Kommerce Core
- Host: GitHub
- URL: https://github.com/inklabs/kommerce-laravel
- Owner: inklabs
- License: other
- Created: 2016-07-15T16:43:06.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2019-02-01T01:11:04.000Z (over 7 years ago)
- Last Synced: 2025-10-30T20:49:17.581Z (8 months ago)
- Topics: ecommerce, laravel, php, shopping-cart, twig
- Language: PHP
- Homepage: https://inklabs.github.io/kommerce-laravel/
- Size: 11.9 MB
- Stars: 8
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Zen Kommerce - Sample Laravel Application
[](https://travis-ci.org/inklabs/kommerce-laravel)
[](https://github.com/inklabs/kommerce-laravel/blob/master/LICENSE.txt)
This is a sample application utilizing [Zen Kommerce Core](https://github.com/inklabs/kommerce-core)
Docs: [Github Pages](https://inklabs.github.io/kommerce-laravel)
## Live Demo
* Admin Login
* https://kommerce-laravel-demo.jamieisaacs.com/admin/login
* email: aaron@example.com
* pw: Test123!
* Customer Login
* https://kommerce-laravel-demo.jamieisaacs.com/user/login
* email: charles@example.com
* pw: Test123!
## Initialize project
```
composer install
composer create-project
php bin/initialize-test-db.php
```
## Serve
```
php artisan serve
open http://localhost:8000
```
## Docker
```
cd Docker/dev
make start
```
## Tests
### Acceptance Tests
`vendor/bin/codecept run acceptance -c vendor/inklabs/kommerce-templates/codeception.yml`
## EasyPost
You will need a test API key to get shipping rates. https://www.easypost.com/getting-started
Update .env with your EASYPOST-API-KEY
## Contributing
Thank you for considering contributing to the sample Laravel application! The contribution guide can be found in the [Core Project](https://github.com/inklabs/kommerce-core/blob/master/CONTRIBUTING.md).
### Working with Base Templates
[Prefer source to edit your vendors](https://moquet.net/blog/5-features-about-composer-php/#5.-prefer-source-to-edit-your-vendors)
```
rm -rf vendor/inklabs/kommerce-templates
composer update inklabs/kommerce-templates --prefer-source
```
### License
The MIT License (MIT)
Copyright (c) 2016 Jamie Isaacs
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.