All Projects → bitfumes → Laravel Packer

bitfumes / Laravel Packer

Licence: mit
Awesome Command Line Tool for speeding up your package creation.

Projects that are alternatives of or similar to Laravel Packer

Mongo Seeding
The ultimate solution for populating your MongoDB database.
Stars: ✭ 375 (+19.81%)
Mutual labels:  command-line-tool, cli, hacktoberfest
Starcli
✨ Browse GitHub trending projects from your command line
Stars: ✭ 269 (-14.06%)
Mutual labels:  command-line-tool, cli, hacktoberfest
Terjira
Terjira is a very interactive and easy to use CLI tool for Jira.
Stars: ✭ 713 (+127.8%)
Mutual labels:  command-line-tool, cli, hacktoberfest
Graphback
Graphback - Out of the box GraphQL server and client
Stars: ✭ 323 (+3.19%)
Mutual labels:  cli, hacktoberfest, crud
Wbot
A simple Web based BOT for WhatsApp™ in NodeJS 😜. Working as of 📅 Feb 14th, 2020
Stars: ✭ 638 (+103.83%)
Mutual labels:  command-line-tool, cli, hacktoberfest
Laminas Cli
Console command runner, exposing commands written in Laminas MVC and Mezzio components and applications
Stars: ✭ 25 (-92.01%)
Mutual labels:  command-line-tool, cli, hacktoberfest
Pypistats
Command-line interface to PyPI Stats API to get download stats for Python packages
Stars: ✭ 86 (-72.52%)
Mutual labels:  command-line-tool, cli, hacktoberfest
Ff
Find files (ff) by name, fast!
Stars: ✭ 257 (-17.89%)
Mutual labels:  command-line-tool, cli
Colorpedia
Command-line tool for looking up colors and palettes.
Stars: ✭ 255 (-18.53%)
Mutual labels:  command-line-tool, cli
Ddh
A fast duplicate file finder
Stars: ✭ 262 (-16.29%)
Mutual labels:  cli, hacktoberfest
Dockly
Immersive terminal interface for managing docker containers and services
Stars: ✭ 3,034 (+869.33%)
Mutual labels:  command-line-tool, cli
Github cli
GitHub on your command line. Use your terminal, not the browser.
Stars: ✭ 263 (-15.97%)
Mutual labels:  command-line-tool, cli
Laravel Gamp
📊 Laravel Google Analytics Measurement Protocol Package
Stars: ✭ 271 (-13.42%)
Mutual labels:  hacktoberfest, laravel-package
Gcal Cli
Google Calendar command line tool for Node.js
Stars: ✭ 255 (-18.53%)
Mutual labels:  command-line-tool, cli
Websocat
Command-line client for WebSockets, like netcat (or curl) for ws:// with advanced socat-like functions
Stars: ✭ 3,477 (+1010.86%)
Mutual labels:  command-line-tool, cli
Fsociety
A Modular Penetration Testing Framework
Stars: ✭ 259 (-17.25%)
Mutual labels:  cli, hacktoberfest
Covid19 Tracker Cli
A curl-based command line tracker for Novel Coronavirus or COVID-19 pandemic. It Supports terminal for linux and macos, command prompt for windows, and termux for android with real-time updates.
Stars: ✭ 244 (-22.04%)
Mutual labels:  command-line-tool, cli
Wpk
a friendly, intuitive & intelligent CLI for webpack
Stars: ✭ 232 (-25.88%)
Mutual labels:  command-line-tool, cli
Diff2html Cli
Pretty diff to html javascript cli (diff2html-cli)
Stars: ✭ 287 (-8.31%)
Mutual labels:  cli, hacktoberfest
Vue Cli Plugin Electron Builder
Easily Build Your Vue.js App For Desktop With Electron
Stars: ✭ 3,549 (+1033.87%)
Mutual labels:  cli, hacktoberfest

Laravel Packer

GitHub issues Latest Stable Version Total Downloads GitHub stars License Twitter

Laravel Packer was created by, and is maintained by Sarthak, and it is a Command Line Tool which is going to help you in creating package.

Features

Installation

Install via composer.

Note: For windows user, first run composer global update

composer global require bitfumes/laravel-packer

Creating new Package Scaffolding

packr new your-package-name {vendor} {author} {author_email}

new

With the above command it will create package scaffolding for you.

Optional fields like 'vendor', 'author' and 'author_email' can also be given via command line interface if you are not willing to provide on command.

Same as Artisan commands

With this CLI, you will have access to all artisan commands you are familiar on Laravel.

You can create controller just like you do with php artisan

packr make:controller controller_name

make

Explore all commands, just run packr on your command line.

Now you can create Migrations and Factories also

Smart Clone

With packr clone command you can do 3 steps in just one.

packr clone {repositoryname}

This not only clone repository but also install composer and if that repository type is project, then it will generate key for project also.

Specify directory to clone

Just like git, you can clone repository to any directory, just give --dir= option for above command

packr clone {repositoryname} --dir={custom_directory_name}

Specify branch to clone

Just like git, you can clone any branch of given repository.

packr clone {repositoryname} --branch={branch_name}

Above command will create various files like

  • Model with relationships
  • Controller with all crud functions
  • Routes based on web or api file
  • factory
  • migration
  • unit test (if relationship is described in json)
  • Feature test for all crud part

This not only clone repository but also install composer and if that repository type is project, then it will generate key for project also.

clone

CRUD Generator

With packr crud command you can create crud for laravel appication with fully green tests

step 1

First we need to create a json structure for our migration of any model/table To do so run this command

packr crud:json {exactModelName}

step 2

Now you have json file, you can describe how your migration/schema is going to look. After giving all details you can now run command to actually create full crud for the model

packr crud:make {relativePathOfThatJsonFile}

License

This package inherits the licensing of its parent framework, Laravel, and as such is open-sourced software licensed under the MIT license

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].