Table of Contents
准备工作
新建一个目录(示例)
初始化 composer.json文件
校验composer.json
添加自动加载 (composer.json)
在Composer.php编写逻辑
写完直接提交git
最后将git地址放到https://packagist.org 官网
提交新本版到仓库 会自动同步到 https://packagist.org
测试
Home Development Tools composer How to write Composer package

How to write Composer package

May 17, 2021 pm 04:57 PM

下面由composer教程栏目给大家介绍Composer包的编写,希望对需要的朋友有所帮助!

准备工作

1,有自己的github账号
2,有自己的https://packagist.org 网站的账号
Copy after login

新建一个目录(示例)

laravel
|--src
|  |-composer.php
Copy after login

初始化 composer.json文件

在laravel文件下
 composer init   命令

// 1. 输入项目命名空间
// 注意<vendor>/<name> 必须要符合 [a-z0-9_.-]+/[a-z0-9_.-]+
Package name (<vendor>/<name>) [dell/htdocs]: output/test=
// 2. 项目描述
Description []: 这是一个测试
// 3. 输入作者信息,可以直接回车
Author [, n to skip]:  sinker <2713497141@qq.com>
// 4. 输入最低稳定版本,stable, RC, beta, alpha, dev
Minimum Stability []: dev
// 5. 输入项目类型,
Package Type (e.g. library, project, metapackage, composer-plugin) []: library
// 6. 输入授权类型
License []: MIT
// 7. 输入依赖信息
Would you like to define your dependencies (require) interactively [yes]?
// 如果需要依赖,则输入要安装的依赖
Search for a package: php
// 输入版本号
Enter the version constraint to require (or leave blank to use the latest version): >=5.4.0
// 如需多个,则重复以上两个步骤
// 8. 是否需要require-dev,
Would you like to define your dev dependencies (require-dev) interactively [yes]?

// 操作同上
{
    "name": "output/test",
    "description": "composer",
    "type": "library",
    "license": "MIT",
    "authors": [
        {
            "name": "sinker",
            "email": "2713497141@qq.com"
        }
    ],
    "minimum-stability": "dev",
    "require": {}
}
// 9. 是否生成composer.json
Do you confirm generation [yes]? yes
Would you like the vendor directory added to your .gitignore [yes]?
Copy after login

校验composer.json

composer validate composer.json
Copy after login

添加自动加载 (composer.json)

"autoload": {
        "psr-4": {
            "Composer\\": "src/"
        }
    }
Copy after login

在Composer.php编写逻辑

namespace Composer;   ## 注意点此处要和自动加载出相同

class Test
{
    public function save()
    {
        echo &#39;composer-test&#39;;
    }
}
Copy after login

写完直接提交git

git tag 1.0.0  
git push --tag    打版本号
Copy after login

最后将git地址放到https://packagist.org 官网

How to write Composer package
How to write Composer package
How to write Composer package

提交新本版到仓库 会自动同步到 https://packagist.org

测试

How to write Composer package

The above is the detailed content of How to write Composer package. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What is the difference between composer and orchestrator? What is the difference between composer and orchestrator? Apr 02, 2025 pm 02:49 PM

Composer is used to manage dependencies on PHP projects, while Orchestrator is used to manage and coordinate microservices or containerized applications. 1.Composer declares and manages dependencies of PHP projects through composer.json file. 2. Orchestrator manages the deployment and extension of services through configuration files (such as Kubernetes' YAML files), ensuring high availability and load balancing.

What is the definition of a composer? What is the definition of a composer? Apr 03, 2025 am 12:17 AM

Composers are people who make music, express emotions, tell stories, and convey ideas through music. The composer's work includes: 1. Concept: determine the theme and style of the work; 2. Creation: compose melody and harmony to form a preliminary musical structure; 3. Experiment: audition and adjustment of the work through instruments or software; 4. Improvement: modify and improve according to the audition results until you are satisfied.

What is composer in Android? What is composer in Android? Apr 04, 2025 am 12:18 AM

Composer is part of the SurfaceFlinger service in Android, and is responsible for synthesising multiple graphics layers into the final display buffer. 1) Collect the graphics layer, 2) sort the graphics layer, 3) synthesize the graphics layer, 4) output to the display device to improve application performance and user experience.

What is a composer used for? What is a composer used for? Apr 06, 2025 am 12:02 AM

Composer is a dependency management tool for PHP. The core steps of using Composer include: 1) Declare dependencies in composer.json, such as "stripe/stripe-php":"^7.0"; 2) Run composerinstall to download and configure dependencies; 3) Manage versions and autoloads through composer.lock and autoload.php. Composer simplifies dependency management and improves project efficiency and maintainability.

What is App composer? What is App composer? Apr 07, 2025 am 12:07 AM

AppComposer is a tool for building and managing applications. 1) It simplifies application development and improves efficiency by dragging and configuring predefined components. 2) Developers can define components, combine interfaces, define business logic, and ultimately render the application. 3) Support basic and advanced usage, such as task management and conditional rendering, helping to build flexible applications.

What is Composer AI? What is Composer AI? Apr 05, 2025 am 12:13 AM

ComposerAI is an artificial intelligence-based tool for generating and optimizing code to improve development efficiency and quality. Its functions include: 1. Code generation: generate code snippets that meet the standards according to requirements. 2. Code optimization: By analyzing existing code, make optimization suggestions. 3. Automated testing: Generate test cases to ensure code quality.

See all articles