Packagist

2022-11-03 程序开发 0
网站域名 packagist.org
网站标题 Packagist
网站关键字
网站介绍 The PHP Package Repository

Toggle navigation

PackagistThe PHP Package Repository

Packagist is the main Composerrepository. It aggregates public PHP packages installable with Composer.

Search by

Getting Started

Define Your Dependencies

Put a file named composer.jsonat the root of your project, containing your project dependencies:

{
   "require": {
       "vendor/package": "1.3.2",
       "vendor/package2": "1.*",
       "vendor/package3": "^2.0.3"
   }
}

For more information about packages versions usage, see the composer documentation.

Install Composer In Your Project

Run this in your command line:

curl -sS https://getcomposer.org/installer | php

Or download composer.pharinto your project root.

See the Composer documentation for complete installation instructionson various platforms.

Install Dependencies

Execute this in your project root.

php composer.phar install

Autoload Dependencies

If your packages specify autoloading information, you can autoload all the dependencies by adding this to your code:

require 'vendor/autoload.php';

Browsethe packages we have to find more great libraries you can use in your project.

Publishing Packages

Define Your Package

Put a file named composer.jsonat the root of your package's repository, containing this information:

{
   "name": "your-vendor-name/package-name",
   "description": "A short description of what your package does",
   "require": {
       "php": ">=7.4",
       "another-vendor/package": "1.*"
   }
}

This is the strictly minimal information you have to give.

For more details about package naming and the fields you can use to document your package better, see the aboutpage.

Validate The File

Run composer validateto check that your file has no syntax errors.

Commit The File

Add the composer.jsonto your git or other VCS repository and commit it.

Publish It

Log inor registeron this site, then hit the submitbutton in the menu.

Once you entered your public repository URL in there, your package will be automatically crawled periodically. You just have to make sure you keep the composer.json file up to date.

Sharing Private Code

Use Private Packagistif you want to share private code as a Composer package with colleagues or customers without publishing it for everyone on Packagist.org. Private Packagist allows you to manage your own private Composer repository with per-user authentication, team management and integration in version control systems.

Packagist maintenance and hosting is provided by Private Packagist