camilo/quotes

A Laravel package that consumes quote data from the https://dummyjson.com/quotes API

Installs: 0

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Language:Blade

Type:package

dev-main 2025-05-13 13:24 UTC

This package is not auto-updated.

Last update: 2025-06-11 11:57:06 UTC


README

Laravel Logo

Build Status Total Downloads Latest Stable Version License

Prerequisites

To run this application you will need:

  • PHP 8.1 or higher
  • Composer installed
  • Node.js version 20 or higher
  • Git (to clone the repository)

Environment Setup

1. Installation

There are two options to install this application:

Option 1: Clone the repository

git clone https://github.com/K1000o-Lp/quotes.git
cd quotes

Option 2: Via Composer

composer require camilo/quotes

2. Configure environment variables

Copy the example environment variables file:

cp .env.example .env

Make sure to properly configure the following variables:

CACHE_DRIVER=file

3. Install dependencies

# Install PHP dependencies
composer install

# Install Node.js dependencies
npm install

Publish package assets

Execute next commands:

# The flag --force is optional, use it when you want overwrite the assets because the package is updated  
php artisan vendor:publish --tag=quotes.assets --force

Compiling assets

For development:

npm run dev

For production:

npm run build

Optimizing the application

php artisan optimize

Ready!

Now you can enjoy Camilo App Quotes! Open your browser and go to http://localhost:8000.

License

The Laravel framework is open-sourced software licensed under the MIT license.