Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dartmoon-io/prestashop-console
https://github.com/dartmoon-io/prestashop-console
prestashop prestashop-library
Last synced: about 1 month 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 (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-21T13:53:26.000Z (about 1 year ago)
- Last Synced: 2024-09-30T23:05:18.269Z (about 1 month 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