Download the PHP package bjm/package_test without Composer

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

laravel package 만들기 테스트

패키지 만들때 참고한 페이지 Link

packages-test

PHP 패키지 만들고 composer 로 배포하기

설치방법 - public

  1. https://packagist.org/ 에 패키지를 추가한다.

  2. composer.json 파일에 다음과 같이 추가

    "bjm/package_test": "*"
  3. 다음 composer 명령어로 설치

    # composer install

또는

  1. 다음 composer 명령어로 설치

    # composer require bjm/package_test

설치방법 - private

  1. 설치를 원하는 프로젝트(이하 내프로젝트)의 디렉토리가 있는 경로에 해당 패키지를 clone 받는다.

    # git clone https://github.com/wood08/package_test.git
  2. 내프로젝트의 composer.json 에 다음 내용 추가

    "repositories": [{
        "type": "vcs",
        "url": "../package_test"
    }],
    "require": {
        "bjm/package_test": "*"
    },
  3. composer 명령어 실행으로 설치

    # composer install

수정사항 반영 방법 (버전올리기)

수정 후

    # git commit
    # git push
    # git tag -a [버전] -m [코멘트]
        ex) git tag -a 1.0.1 -m '버전 업 관련 설명 추가'
    # git push --tags

All versions of package_test with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3.0
illuminate/support Version ^4.0|^5.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 bjm/package_test contains the following files

Loading the files please wait ....