https://github.com/dartmoon-io/prestashop-console
https://github.com/dartmoon-io/prestashop-console
prestashop prestashop-library
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/dartmoon-io/prestashop-console
- Owner: dartmoon-io
- License: mit
- Created: 2021-12-14T21:57:08.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-21T13:53:26.000Z (almost 2 years ago)
- Last Synced: 2025-06-03T04:11:54.003Z (29 days ago)
- Topics: prestashop, prestashop-library
- Language: PHP
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Prestashop Console
Simple boilerplate to streamline the creation of custom PrestaShop console commands.## Installation
```bash
composer require dartmoon/prestashop-console
```## Usage
### Create command file
You can create a command everywhere in the module folder, but for the sake of explanation let's assume we have a folder name `src/Commands`.Let's create out first command, creating the file `src/Commands/HelloWorldCommand.php`
```php