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

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

Jaxon integration for CodeIgniter 4

This package integrates the Jaxon library into the CodeIgniter 4 framework.

Installation

The version 4 of the package requires CodeIgniter version 4.

Install the package with Composer.

Or

And run composer install.

Filter

This package provides a filter that must be attached to the routes to all the pages where the Jaxon features are enabled.

In the app/Config/Routes.php file, a route must be defined for Jaxon requests.

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

Configuration

Copy the config/Jaxon.php file in this package to the app/Config dir of the CodeIgniter app.

The settings in the config/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 CodeIgniter 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 'jaxon/ajax' The directory of the Jaxon classes
namespace \Jaxon\Ajax The namespace of the Jaxon classes
separator . The separator in Jaxon class names
protected empty array Prevent Jaxon from exporting some methods

Usage

The Jaxon classes

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

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

Contribute

License

The package is licensed under the BSD license.


All versions of jaxon-codeigniter with dependencies

PHP Build Version
Package Version
Requires jaxon-php/jaxon-core Version ^4.0
codeigniter4/framework Version 4.*
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-codeigniter contains the following files

Loading the files please wait ....