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
Requires
- php: ^8.2
- laravel/framework: ^12.0
- laravel/tinker: ^2.10.1
Requires (Dev)
- fakerphp/faker: ^1.23
- laravel/pail: ^1.2.2
- laravel/pint: ^1.13
- laravel/sail: ^1.41
- mockery/mockery: ^1.6
- nunomaduro/collision: ^8.6
- phpunit/phpunit: ^11.5.3
This package is not auto-updated.
Last update: 2025-06-11 11:57:06 UTC
README
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.