Download the PHP package jonathanbak/kpf without Composer

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

kpf

KPF 는 Kubernetes PHP Framework 의 약자로, 쿠버네티스 환경에서 쉽게 PHP MVC 개발을 가능하게 하기 위해 만들었습니다. 어려운 기교 없이 쉽게 접근하여 서비스에 집중 할 수 있기를 바랍니다.

Requirements

requires the following:

Installation

Start First Project

터미널에서 아래 스크립트를 실행하면 자동으로 폴더 구성 및 샘플 파일이 생성됩니다.

Test Cli

쉘용 스크립트 컨트롤러 파일 실행이 가능합니다.

Folder Structure

.
├── controllers     # URL에서 접근하는 controller 파일
├── models          # 모델 파일, 주요 로직
├── views           # View 폴더, tpl 파일
├── config              # 설정 파일
│   ├── common.route.json   # routing 파일
│   └── common.db.json      # DB 정보 설정 파일
├── html                # 실제 웹서버의 DOCUMENT_ROOT
│   ├── css             # css 파일
│   ├── image           # images 파일
│   ├── js              # javascript 파일
│   └── index.php       # 웹 index 파일 , 모든 요청 포워딩
├── _tmp            # 임시 폴더, 캐쉬파일등
├── logs            # 로그 폴더
├── vendor              # Composer 라이브러리 폴더
└── configure.json      # 메인 설정 파일

All versions of kpf with dependencies

PHP Build Version
Package Version
Requires jonathanbak/mysqlilib Version ~1.3
twig/twig Version ^3.0
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 jonathanbak/kpf contains the following files

Loading the files please wait ....