All Projects → matthewbdaly → artisan-standalone

matthewbdaly / artisan-standalone

Licence: MIT license
Allows you to use Artisan outside of a Laravel install.

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to artisan-standalone

laravel-tinker
Adds a way to write php and run it directly in Laravels' Artisan Tinker.
Stars: ✭ 123 (+310%)
Mutual labels:  artisan
entrust
This package is based on Zizaco/entrust to support Laravel/Lumen 6+ versions
Stars: ✭ 22 (-26.67%)
Mutual labels:  lumen
php-framework-benchmark
php framework benchmark (include laravel、symfony、silex、lumen、slim、yii2、tastphp etc)
Stars: ✭ 17 (-43.33%)
Mutual labels:  lumen
signature
HMAC and RSA signature for Laravel and Lumen
Stars: ✭ 26 (-13.33%)
Mutual labels:  lumen
lumen-session-example
Enable session in lumen framework (Laravel)
Stars: ✭ 22 (-26.67%)
Mutual labels:  lumen
nippo
本アプリケーションはYAPC::Hokkaido 2016の「Vue.jsによるWebアプリケーション開発」用に実装したサンプルアプリケーションです。
Stars: ✭ 17 (-43.33%)
Mutual labels:  lumen
laravel-migrate-check
An artisan command to check for pending migrations with proper exit code
Stars: ✭ 53 (+76.67%)
Mutual labels:  artisan
jacky
🐄 HTTP JSON API Client for Laravel & Lumen
Stars: ✭ 17 (-43.33%)
Mutual labels:  lumen
lumen-realworld-example-app
Exemplary real world backend API built with Lumen + MongoDB
Stars: ✭ 50 (+66.67%)
Mutual labels:  lumen
Lumen-Doctrine-DDD-Example
Domain Driven Design Application Example, built with Lumen 5.3 and Doctrine.
Stars: ✭ 72 (+140%)
Mutual labels:  lumen
cache
Laravel & Lumen Cache Service | File and Redis cache system
Stars: ✭ 19 (-36.67%)
Mutual labels:  lumen
Laravel-FluentLogger
fluent logger for laravel (with Monolog handler for Fluentd)
Stars: ✭ 55 (+83.33%)
Mutual labels:  lumen
inspector-laravel
Connect your Laravel application to Inspector.
Stars: ✭ 164 (+446.67%)
Mutual labels:  lumen
paper-wallet
stellar.github.io/paper-wallet/
Stars: ✭ 41 (+36.67%)
Mutual labels:  lumen
laravel-lumen-mysql-encryption
Database fields encryption in laravel and lumen for mysql databases with native search.
Stars: ✭ 20 (-33.33%)
Mutual labels:  lumen
laravel-redis-sentinel-drivers
Redis Sentinel integration for Laravel and Lumen.
Stars: ✭ 100 (+233.33%)
Mutual labels:  lumen
laravel-snowflake
This Laravel package to generate 64 bit identifier like the snowflake within Twitter.
Stars: ✭ 94 (+213.33%)
Mutual labels:  lumen
PHP-Frameworks-Bench
Popular PHP Frameworks Benchmark.
Stars: ✭ 28 (-6.67%)
Mutual labels:  lumen
artisan-aliases
Save keystrokes and run Artisan commands your way
Stars: ✭ 23 (-23.33%)
Mutual labels:  artisan
lumen-newrelic
New Relic instrumentation for the Lumen framework
Stars: ✭ 26 (-13.33%)
Mutual labels:  lumen

artisan-standalone

Allows you to use Artisan outside of a full Laravel or Lumen install.

Why do I want this?

It's intended so that when you're building a standalone Laravel package, you still have access to the Artisan commands for generating boilerplate and don't have to generate them in your application, then copy them elsewhere.

How do I use it?

You will normally want to install this as a dev dependency in your package:

composer require --dev matthewbdaly/artisan-standalone

Then you can access the Artisan console in your package as follows:

vendor/bin/artisan

Can I use it globally?

In theory it might, but I haven't set it up to do so - it doesn't actually include Laravel as a dependency, so you'd need to install laravel/framework globally as well. My recommendation is to install it on a per-project basis. You might want to check out my boilerplate package, which includes this one as a dependency, and is a good starting point for building a standalone Laravel package.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].