Download the PHP package wycto/phpframe without Composer

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

欢迎使用 wycto打造的轻量级PHP框架

众所周知:框架是减轻工作量的工具,避免重复造轮子,利用框架结合优秀的开发思想,能让我们的快速上手、便于阅读、易于维护,事半功倍


框架思想:MVC,既M(模型)、V(视图)、C(控制器)


框架目录结构

www  WEB部署目录(或者子目录)
├─app           应用目录
│  ├─admin      后台管理应用
│  ├─api        api应用
│  ├─common     公共应用
│  ├─index      前台网站应用
│  │  ├─controller       控制器文件夹
│  │  ├─model            模型文件夹
│  │  ├─view             视图文件夹
│  ├─wap        微网站应用
│  ├─common.php         公共函数文件
│
├─config                配置目录
│  ├─app.php            应用配置
│  ├─cookie.php         Cookie配置
│  ├─database.php       数据库配置
│  ├─log.php            日志配置
│  └─view.php           视图配置
│
├─frame                 框架目录
├─public                WEB目录(对外访问目录)
│  ├─static             静态资源目录(存放js、css、img)
│  ├─index.php          入口文件
│  └─.htaccess          用于apache的重写
├─vendor                Composer类库目录
├─composer.json         composer 定义文件
├─README.md             README 文件

部署

入口文件在public下面,域名访问 public 下面的 index.php 入口文件

配置

应用配置 app.php

数据库配置 database.php

待续......


All versions of phpframe 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 wycto/phpframe contains the following files

Loading the files please wait ....