Download the PHP package mazl/onion without Composer

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

运行环境要求

PHP >= 7.0

安装Composer

参考 https://docs.phpcomposer.com/00-intro.html#Downloading-the-Composer-Executable

创建项目

切换到你的WEB根目录, 运行命令 composer create-project mazl/onion

测试运行

访问项目 public 目录, 例如: http://localhost/onion/public/index.php, 输出 hello world.

源码下载:

https://github.com/mazl001/onion (不含演示代码)

https://github.com/mazl001/onion-demo (包含演示代码)

隐藏 index.php:

项目入口文件为 public/index.php, 可以通过配置让 URL 不需要 index.php 即可访问:

1、apache 服务器, 需要开启 mod_rewrite 模块, 在 public 目录下创建 .htaccess 文件

Options +FollowSymlinks -Multiviews RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]

2、nginx 服务器, 可以在网站设置中增加以下设置来开启「优雅链接」

location / { try_files $uri $uri/ /index.php?$query_string; }


All versions of onion with dependencies

PHP Build Version
Package Version
Requires php Version >=7.0
symfony/http-foundation Version ^3.4
jenssegers/blade Version ^1.4
predis/predis Version ^1.1
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 mazl/onion contains the following files

Loading the files please wait ....