Download the PHP package jimhlad/leapfrog without Composer

On this page you can find all versions of the php package jimhlad/leapfrog. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package leapfrog

LeapFrog for Laravel

Hate writing CRUD code from scratch? Don't want to memorize any more crazy commands?

LeapFrog is a UI-based CRUD boilerplate generator for Laravel. It allows you to quickly create files according to the Controller-Service-Model pattern. Simply point your browser to your-project.dev/leapfrog and go!

For example, if you are creating a new "Truck" entity, it will generate or edit the following files for you:

The interface allows you to pick which files you want to create and even customize the paths (to some extent).

Click here for screenshots.

Compatibility

This package was tested with Laravel 5.4 and may not work with previous versions of Laravel.

Usage

Step 1: Install with composer

Install the package using composer:

composer require laracasts/generators:dev-master --dev

composer require jimhlad/leapfrog --dev

NOTE: The reason why Laracast Generators must be installed separately is because there is a bugfix for Laravel 5.4 that has not yet been released. Requiring it this way prevents certain minimum stability errors.

Step 2: Register the Service Provider

You'll only want to use this tool for local development, so we can add the following in app/Providers/AppServiceProvider.php:

Publish the assets by running:

php artisan vendor:publish --provider="JimHlad\LeapFrog\LeapFrogServiceProvider"

Step 3: Update RouteServiceProvider

Update app/Providers/RouteServiceProvider.php to include the routes/leapfrog.php file by changing:

to

NOTE: You should modify routes/leapfrog.php to ensure that these routes are only accessible within your local environment. This package is for development purposes only.

Step 4: Create app layout

The views generated by this package assume the existence of a views/layouts/app.blade.php file. We can generate this by running the standard:

php artisan make:auth

That's it!

You should now be able to point your browser to your-project.dev/leapfrog to see the LeapFrog dashboard.

Author

If you have any questions please feel free to reach out to me (Jim Hlad) on Twitter: @jimhlad

Special Thanks

This package installs two other awesome packages as dependencies:

License

LeapFrog is open source software licensed under the MIT license.

Bug Reporting and Feature Requests

Please be as detailed as possible when submitting bug reports or feature requests.

Disclaimer

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


All versions of leapfrog with dependencies

PHP Build Version
Package Version
Requires yab/formmaker Version ^1.1
laracasts/generators Version dev-master
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package jimhlad/leapfrog contains the following files

Loading the files please wait ....