Download the PHP package jaxon-php/jaxon-laravel without Composer

On this page you can find all versions of the php package jaxon-php/jaxon-laravel. 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 jaxon-laravel

Jaxon integration for Laravel

This package integrates the Jaxon library into the Laravel framework. It works with Laravel version 6 or newer.

Installation

Add the following lines in the composer.json file, and run the composer update command.

Publish the package configuration.

Routing and middleware

Starting from version 4.1.0, the library automatically registers the middleware. It can be configured to also register its route by adding the route and middlewares options in the config/jaxon.php file.

Register the Jaxon middleware for Laravel in the app/Http/Kernel.php file (only for versions prior to 4.1.0).

Add the jaxon.ajax middleware to the route which processes Jaxon requests. Set the route name to jaxon.

The Jaxon middleware returns the response, so it must be added at the end of the middleware list. Also, the code in this route is not supposed to be executed, unless Jaxon fails to process the request.

Configuration

The settings in the jaxon.php config file are separated into two sections. The options in the lib section are those of the Jaxon core library, while the options in the app sections are those of the Laravel application.

The following options can be defined in the app section of the config file.

Name Description
directories An array of directory containing Jaxon application classes
views An array of directory containing Jaxon application views

By default, the views array is empty. Views are rendered from the framework default location. There's a single entry in the directories array with the following values.

Name Default value Description
directory app_path('Jaxon/App') The directory of the Jaxon classes
namespace \Jaxon\App The namespace of the Jaxon classes
separator . The separator in Jaxon class names
protected empty array Prevent Jaxon from exporting some methods

The route option is overriden by the core.request.uri option of the Jaxon library.

Usage

This is an example of a Laravel controller using the Jaxon library.

Before it prints the page, the controller calls the $jaxon->css(), $jaxon->js() and $jaxon->script() functions to get the CSS and javascript codes generated by Jaxon, which it inserts into the page.

The Jaxon classes

The Jaxon classes can inherit from \Jaxon\App\CallableClass. By default, they are located in the app/Jaxon/App dir of the Laravel application, and the associated namespace is \Jaxon\App.

This is a simple example of a Jaxon class, defined in the app/Jaxon/App/HelloWorld.php file.

Contribute

License

The package is licensed under the BSD license.


All versions of jaxon-laravel with dependencies

PHP Build Version
Package Version
Requires jaxon-php/jaxon-core Version ^4.0
illuminate/support Version 6.*|7.*|8.*|9.*|10.*
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 jaxon-php/jaxon-laravel contains the following files

Loading the files please wait ....