Download the PHP package jonathanbak/psf without Composer

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

README

What is PSF?

PSF는 PHP Simple Framework 로 간단한 파일(configure.json) 설정 만으로 다중 사이트를 운영할수 있게 도와주는 프레임워크 입니다.

Features

PSF supports the following:

Requirements

requires the following:

Note: php composer 를 설치하고 PSF를 추가하면 자동으로 의존성 라이브러리들을 설치합니다.

Installation

  1. Download and install Composer by following the official instructions.
  2. Create a composer.json defining your dependencies. Note that this example is a short version for applications that are not meant to be published as packages themselves. To create libraries/packages please read the documentation.

  3. Run Composer: php composer.phar install

Start First Project

터미널에서 아래 스크립트를 실행후 데이터를 입력하시면 자동으로 폴더가 구성됩니다.

Folder Structure

PSF 사용시 추천하는 폴더 구조는 아래와 같습니다.

.
├── app
│   └── com.example         # example.com 사이트 루트 폴더
│       ├── _tmp            # 임시폴더, 캐쉬파일과 로그 생성
│       ├── controllers     # URL에서 접근하는 controller 파일
│       ├── models          # 모델 파일, 주요 로직
│       └── views           # View 폴더
│           ├── css             # css 파일
│           ├── image           # images 파일
│           ├── js              # javascript 파일
│           └── tpl             # tpl 파일 (html 파일)
├── config              # 설정 파일
│   ├── db              # DB 정보 설정 파일
│   └── site            # 사이트 설정 파일
├── html                # 실제 웹서버의 DOCUMENT_ROOT
└── vendor              # Composer 라이브러리 폴더

app 폴더 하위 구조config/site/usersiteurl.json 파일안에서 별도 정의가 가능합니다.

app 폴더 상위 구조configure.json 파일 에서 별도 정의가 가능합니다.


All versions of psf with dependencies

PHP Build Version
Package Version
Requires jonathanbak/mysqlilib Version ~1.2
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/psf contains the following files

Loading the files please wait ....