Download the PHP package phpvital/pjaxer without Composer

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

laravel-pjax-package

a pjax package for laravel5, include pjax and nprogress

一个基于 laravel 5 的 pjax 扩展包 , 本项目基于 NProgress 传送门 和 Pjax.

使用介绍:Laravel-China传送门|个人博客

安装使用详细教程 Installation

使用 Composer 引入:

打开 app/Http/Kernel.php 文件, 在 $middleware 数组里面添加中间件:

add \Vital\Pjaxer\Middlewares\PjaxMiddleware::class, to $middleware in app/Http/Kernel.php

打开 config/app.php 文件, 在 providers 数组里面注册服务:

add Vital\Pjaxer\Providers\PjaxServiceProvider::class, to providers in config/app.php

在下面的 aliases 数组里面注册门面 Facade :

add 'Pjax' => \Vital\Pjaxer\Facades\PjaxFacade::class, to aliases

执行命令 php artisan vendor:publish 之后会在 config 目录下生成一个 pjax.php 文件, 这个文件用来进行pjax配置;

使用方法 Usage

加载 pjax 所需要的资源 Load resources

在你的页面插入这条代码, 引入对应的 CSS 和 js 文件:

添加代码: {!! Pjax::pjax() !!} 之后就可以来到页面查看效果啦 :D

add @include('pjax::head') and {!! Pjax::pjax() !!} to your page.

个性化配置 Custom

来到 config/pjax.php 文件, 里面有对应的设置, 目前支持 progress bar 的背景颜色修改以及 snipper 背景颜色的修改.

configure config/pjax.php to custom background of progress bar or snipper

最后

欢迎star , 欢迎 Issue , 欢迎任何学习交流~~

License

Laravel-pjax-package is licensed under The MIT License (MIT).


All versions of pjaxer with dependencies

PHP Build Version
Package Version
No informations.
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 phpvital/pjaxer contains the following files

Loading the files please wait ....