├── CODE-OF-CONDUCT.md ├── COLLABORATING.md ├── CONTRIBUTING.md ├── LICENSE.md └── README.md /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Code of Conduct 2 | 3 | As contributors and maintainers of this project, and in the interest of 4 | fostering an open and welcoming community, we pledge to respect all people who 5 | contribute through reporting issues, posting feature requests, updating 6 | documentation, submitting pull requests or patches, and other activities. 7 | 8 | We are committed to making participation in this project a harassment-free 9 | experience for everyone, regardless of level of experience, gender, gender 10 | identity and expression, sexual orientation, disability, personal appearance, 11 | body size, race, ethnicity, age, religion, or nationality. 12 | 13 | Examples of unacceptable behavior by participants include: 14 | 15 | * The use of sexualized language or imagery 16 | * Personal attacks 17 | * Trolling or insulting/derogatory comments 18 | * Public or private harassment 19 | * Publishing other's private information, such as physical or electronic 20 | addresses, without explicit permission 21 | * Other unethical or unprofessional conduct 22 | 23 | Project maintainers have the right and responsibility to remove, edit, or 24 | reject comments, commits, code, wiki edits, issues, and other contributions 25 | that are not aligned to this Code of Conduct, or to ban temporarily or 26 | permanently any contributor for other behaviors that they deem inappropriate, 27 | threatening, offensive, or harmful. 28 | 29 | By adopting this Code of Conduct, project maintainers commit themselves to 30 | fairly and consistently applying these principles to every aspect of managing 31 | this project. Project maintainers who do not follow or enforce the Code of 32 | Conduct may be permanently removed from the project team. 33 | 34 | This Code of Conduct applies both within project spaces and in public spaces 35 | when an individual is representing the project or its community. 36 | 37 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 38 | reported by contacting a project maintainer at awesome-php@josediazgonzalez.com. All 39 | complaints will be reviewed and investigated and will result in a response that 40 | is deemed necessary and appropriate to the circumstances. Maintainers are 41 | obligated to maintain confidentiality with regard to the reporter of an 42 | incident. 43 | 44 | 45 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 46 | version 1.3.0, available at 47 | [http://contributor-covenant.org/version/1/3/0/][version] 48 | 49 | [homepage]: http://contributor-covenant.org 50 | [version]: http://contributor-covenant.org/version/1/3/0/ 51 | -------------------------------------------------------------------------------- /COLLABORATING.md: -------------------------------------------------------------------------------- 1 | # Collaboration Guidelines 2 | As a collaborator you are representing the Awesome PHP project to the community. Please adhere to the following guidelines to give everyone the best experience possible: 3 | 4 | ## Etiquette 5 | Please adhere to the [CODE-OF-CONDUCT](https://github.com/ziadoz/awesome-php/blob/master/CODE-OF-CONDUCT.md) when reviewing suggestions and participating in discussions on the project's Github account. 6 | 7 | Always be polite and thank people, even if you don’t accept their suggestions. 8 | 9 | You are welcome to suggest projects that you are personally involved with, or those of friends, family or colleagues, but you are not allowed to review or merge them yourself, nor should you request that others do so for you. They must be reviewed by a neutral collaborator in their own time. 10 | 11 | If you provide feedback on a suggested project please be friendly and constructive. 12 | 13 | ## Reviewing 14 | Please work through the following checklist when reviewing a project: 15 | 16 | - Tag pull requests with the most relevant label(s). 17 | - Validate URLs work correctly and don't point to anything malicious. 18 | - Ensure suggestions adhere to [CONTRIBUTING](https://github.com/ziadoz/awesome-php/blob/master/CONTRIBUTING.md). 19 | 20 | ## Enhancements 21 | If you have an idea on how to improve the project, please open a ticket for discussion using the `Enhancement` label. Please don’t make any broad or sweeping changes without consulting other collaborators first and reaching a consensus. 22 | 23 | ## Join 24 | If you want to help out please send an email to my Github username [at] gmail [dot] com with the subject “Awesome PHP Collaborator and a link to your Github account and I’ll get back to you as soon as I can (I'm notoriously slow, sorry). 25 | 26 | Thank you for taking the time to help out with Awesome PHP, your help is appreciated! 27 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contribution Guidelines 2 | Unfortunately, not every library, tool or framework can be considered for inclusion. The aim of Awesome PHP is to be a concise list of noteworthy and interesting software written in modern PHP. Therefore, suggested software should: 3 | 4 | a) Be widely recommended regardless of personal opinion 5 | b) Well known or discussed within the PHP community 6 | c) Be unique in its approach or function 7 | d) Fill a niche gap in the market 8 | 9 | Self-promotion is frowned upon, so please consider seriously whether your project meets the criteria before opening a pull request, otherwise it may be closed without being reviewed. 10 | 11 | Also, please ensure your pull request adheres to the following guidelines: 12 | 13 | * Software that is PHP 5.5+, Composer-installable, PSR compliant, semantically versioned, united tested and well documented in English is preferred. 14 | * Please search previous suggestions before making a new one, as yours may be a duplicate. 15 | * Enter a meaningful pull request description. 16 | * Please make an individual commit for each suggestion in a separate pull request. 17 | * Put a link to each library in your pull request ticket so it's easier to review. 18 | * Use the following format for libraries: \[LIBRARY\]\(LINK\) - DESCRIPTION. 19 | * Prefix duplicate library names with their vendor or namespace followed by a space: Foo\Bar would be Foo Bar. 20 | * New categories, or improvements to the existing categorisation, are always welcome. 21 | * Please keep descriptions short, simple and unbiased. No buzzwords or marketing jargon. 22 | * End all descriptions with a full stop/period. 23 | * Check your spelling and grammar. 24 | * Make sure your text editor is set to remove trailing whitespace. 25 | 26 | Thank you for your suggestions! 27 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE 2 | Version 2, December 2004 3 | 4 | Copyright (C) 2004 Sam Hocevar 5 | 6 | Everyone is permitted to copy and distribute verbatim or modified 7 | copies of this license document, and changing it is allowed as long 8 | as the name is changed. 9 | 10 | DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE 11 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 12 | 13 | 0. You just DO WHAT THE FUCK YOU WANT TO. 14 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Awesome PHP 2 | 一个PHP资源列表,内容包括:库、框架、模板、安全、代码分析、日志、第三方库、配置工具、Web 工具、书籍、电子书、经典博文等等 3 | 4 | ## 贡献 5 | 详细内容请查看[贡献](https://github.com/ziadoz/awesome-php/blob/master/CONTRIBUTING.md) 和 [代码管理](https://github.com/ziadoz/awesome-php/blob/master/CODE-OF-CONDUCT.md). 6 | 7 | ## 目录 8 | - [Awesome PHP](#awesome-php) 9 | - [Composer源 Composer Repositories](#composer源-composer-repositories) 10 | - [依赖管理 Dependency Management](#依赖管理-dependency-management) 11 | - [其他的依赖管理 Dependency Management Extras](#其他的依赖管理-dependency-management-extras) 12 | - [框架 Frameworks](#框架-frameworks) 13 | - [其他框架 Framework Extras](#其他框架-framework-extras) 14 | - [框架组件 Components](#框架组件-components) 15 | - [微型框架 Micro Frameworks](#微型框架-micro-frameworks) 16 | - [其他微型框架 Micro Framework Extras](#其他微型框架-micro-framework-extras) 17 | - [路由 Routers](#路由-routers) 18 | - [模板 Templating](#模板-templating) 19 | - [静态站点生成器 Static Site Generators](#静态站点生成器-static-site-generators) 20 | - [超文本传输协议 HTTP](#超文本传输协议-http) 21 | - [爬虫 Scraping](#爬虫-scraping) 22 | - [中间件 Middlewares](#中间件-middlewares) 23 | - [网址 URL](#网址-url) 24 | - [电子邮件 Email](#电子邮件-email) 25 | - [文件 Files](#文件-files) 26 | - [流 Streams](#流-streams) 27 | - [依赖注入 Dependency Injection](#依赖注入-dependency-injection) 28 | - [图像 Imagery](#图像-imagery) 29 | - [测试 Testing](#测试-testing) 30 | - [持续集成 Continuous Integration](#持续集成-continuous-integration) 31 | - [文档 Documentation](#文档-documentation) 32 | - [安全 Security](#安全-security) 33 | - [密码 Passwords](#密码-passwords) 34 | - [代码分析 Code Analysis](#代码分析-code-analysis) 35 | - [代码质量 Code Quality](#代码质量-code-quality) 36 | - [静态分析 Static Analysis](#静态分析-static-analysis) 37 | - [Architectural Architectural](#architectural-architectural) 38 | - [调试和分析 Debugging and Profiling](#调试和分析-debugging-and-profiling) 39 | - [构建工具 Build Tools](#构建工具-build-tools) 40 | - [任务运行器 Task Runners](#任务运行器-task-runners) 41 | - [导航 Navigation](#导航-navigation) 42 | - [资源管理 Asset Management](#资源管理-asset-management) 43 | - [地理位置 Geolocation](#地理位置-geolocation) 44 | - [日期和时间 Date and Time](#日期和时间-date-and-time) 45 | - [事件 Event](#事件-event) 46 | - [日志 Logging](#日志-logging) 47 | - [电子商务 E-commerce](#电子商务-e-commerce) 48 | - [PDF PDF](#pdf-pdf) 49 | - [Office Office](#office-office) 50 | - [数据库 Database](#数据库-database) 51 | - [迁移 Migrations](#迁移-migrations) 52 | - [NoSQL NoSQL](#nosql-nosql) 53 | - [队列 Queue](#队列-queue) 54 | - [搜索 Search](#搜索-search) 55 | - [命令行 Command Line](#命令行-command-line) 56 | - [身份验证和授权 Authentication and Authorization](#身份验证和授权-authentication-and-authorization) 57 | - [标记 Markup](#标记-markup) 58 | - [字符串 Strings](#字符串-strings) 59 | - [数字 Numbers](#数字-numbers) 60 | - [过滤和验证 Filtering and Validation](#过滤和验证-filtering-and-validation) 61 | - [API API](#api-api) 62 | - [缓存 Caching](#缓存-caching) 63 | - [数据结构和存储 Data Structure and Storage](#数据结构和存储-data-structure-and-storage) 64 | - [通知 Notifications](#通知-notifications) 65 | - [部署 Deployment](#部署-deployment) 66 | - [国际化和本地化 Internationalisation and Localisation](#国际化和本地化-internationalisation-and-localisation) 67 | - [第三方API Third Party APIs](#第三方api-third-party-apis) 68 | - [扩展 Extensions](#扩展-extensions) 69 | - [杂项 Miscellaneous](#杂项-miscellaneous) 70 | - [软件 Software](#软件-software) 71 | - [PHP安装 PHP Installation](#PHP安装-php-installation) 72 | - [开发环境 Development Environment](#开发环境-development-environment) 73 | - [虚拟机 Virtual Machines](#虚拟机-virtual-machines) 74 | - [文本编辑器和IDE Text Editors and IDEs](#文本编辑器和ide-text-editors-and-ides) 75 | - [Web应用 Web Applications](#web应用-web-applications) 76 | - [基础架构 Infrastructure](#基础架构-infrastructure) 77 | - [资源 Resources](#资源-resources) 78 | - [PHP网站 PHP Websites](#php网站-php-websites) 79 | - [其他网站 Other Websites](#其他网站-other-websites) 80 | - [PHP书籍 PHP Books](#php书籍-php-books) 81 | - [其他书籍 Other Books](#其他书籍-other-books) 82 | - [PHP视频 PHP Videos](#php视频-php-videos) 83 | - [PHP播客 PHP Podcasts](#php播客-php-podcasts) 84 | - [PHP阅读 PHP Reading](#php阅读-php-reading) 85 | - [PHP内核阅读 PHP Internals Reading](#php内核阅读-php-internals-reading) 86 | - [PHP杂志 PHP Magazines](#php杂志-php-magazines) 87 | - [贡献](#贡献) 88 | 89 | ## Composer源 Composer Repositories 90 | *Composer源* 91 | 92 | * [Firegento](http://packages.firegento.com/) - Magento模块Composer源 93 | * [Packagist](https://packagist.org/) - PHP包的源 94 | * [Private Packagist](https://packagist.com/) - 一个PHP的服务,提供Composer包的存储 95 | * [WordPress Packagist](https://wpackagist.org/) - 使用Composer管理你的WordPress插件 96 | * [Zend Framework Packages](https://packages.zendframework.com/) - Zend Framework Composer源 97 | 98 | ## 依赖管理 Dependency Management 99 | *依赖和包管理库* 100 | 101 | * [Composer Installers](https://github.com/composer/installers) - 一个多框架Composer库安装器 102 | * [Composer](https://getcomposer.org/) - 一个包和依赖管理器 103 | * [Melody](http://melody.sensiolabs.org/) - 一个用于构建Composer脚本文件的工具 104 | * [Pickle](https://github.com/FriendsOfPHP/pickle) - 一个PHP扩展安装器 105 | 106 | ## 其他的依赖管理 Dependency Management Extras 107 | *其他的相关依赖管理* 108 | 109 | * [Composed](https://github.com/joshdifabio/composed) - 一个在运行时解析你项目Composer环境的库 110 | * [Composer Merge Plugin](https://github.com/wikimedia/composer-merge-plugin) - 一个用于合并多个composer.json文件的Composer插件 111 | * [Prestissimo](https://github.com/hirak/prestissimo) - 一个开启并行安装进程的Composer插件 112 | * [Satis](https://github.com/composer/satis) - 一个静态Composer存储库的生成器 113 | * [tooly](https://github.com/tommy-muehle/tooly-composer-script) - 一个在项目中使用Composer管理PHAR文件的库 114 | * [Toran Proxy](https://toranproxy.com) - 一个静态Composer存储库和代理 115 | 116 | ## 框架 Frameworks 117 | *Web开发框架* 118 | 119 | * [Aura Framework](http://auraphp.com/framework/) - 一个独立的组件框架 120 | * [CakePHP](https://cakephp.org/) - 一个快速应用程序开发框架 (CP) 121 | * [Laravel 5](https://laravel.com/) - 另一个PHP框架 (L5) 122 | * [Nette](https://nette.org) - 另一个由个体组件组成的框架 123 | * [Phalcon](https://phalconphp.com/en/) - 通过C扩展实现的框架 124 | * [PPI Framework 2](https://github.com/ppi) - 一个互操作性框架 125 | * [Symfony](https://symfony.com/) - 一个独立组件组成的框架 (SF) 126 | * [Yii2](https://github.com/yiisoft/yii2/) - 另一个PHP框架 127 | * [Zend Framework 2](https://framework.zend.com) - 另一个由独立组件组成的框架 (ZF2) 128 | * [Ice](https://www.iceframework.org/) - 另一个通过C扩展实现的简单快速的PHP框架 129 | 130 | ## 其他框架 Framework Extras 131 | *其他Web开发框架* 132 | 133 | * [CakePHP CRUD](https://github.com/friendsofcake/crud) - CakePHP的快速应用程序(RAD)插件 134 | * [Knp RAD Components](http://rad.knplabs.com/) - Symfony 2的快速应用程序(RAD)包 135 | * [Symfony CMF](https://github.com/symfony-cmf/symfony-cmf) - 一个创建自定义CMS的内容管理框架 136 | 137 | ## 框架组件 Components 138 | *来自web开发框架的独立组件* 139 | 140 | * [Aura](http://auraphp.com/) - 独立组件,完全解耦,不依赖于任何其他框架 141 | * [CakePHP Plugins](https://plugins.cakephp.org/) - CakePHP插件的目录 142 | * [Hoa Project](https://hoa-project.net/En/) - 另一个PHP组件包 143 | * [League of Extraordinary Packages](https://thephpleague.com/) - 一个PHP软件开发组 144 | * [Symfony Components](http://symfony.com/doc/master/components/index.html) - Symfony组件 145 | * [Zend Framework 2 Components](https://docs.zendframework.com/) - Zend Framework 2组件 146 | 147 | ## 微型框架 Micro Frameworks 148 | *微型框架和路由* 149 | 150 | * [Bullet PHP](http://bulletphp.com/) - 用于构建REST APIs的微型框架 151 | * [Lumen](https://lumen.laravel.com) - 一个Laravel的微型框架 152 | * [Radar](https://github.com/radarphp/Radar.Adr) - 一个PHP的Action-Domain-Responder的实现 153 | * [Slim](https://www.slimframework.com/) - 另一个简单的微型框架 154 | 155 | ## 其他微型框架 Micro Framework Extras 156 | *其他相关的微型框架和路由* 157 | 158 | * [Silex Skeleton](https://github.com/silexphp/Silex-Skeleton) - Silex的项目架构 159 | * [Silex Web Profiler](https://github.com/silexphp/Silex-WebProfiler) - 一个Silex web的调试工具 160 | * [Slim Skeleton](https://github.com/slimphp/Slim-Skeleton) - Slim架构 161 | * [Slim Twig View](https://github.com/slimphp/Slim-Views) - Twig集成在中 162 | * [Slim PHP View](https://github.com/slimphp/PHP-View) - 一个Slim中的简单PHP渲染 163 | 164 | ## 路由 Routers 165 | *处理应用路由的库* 166 | 167 | * [Aura.Router](https://github.com/auraphp/Aura.Router) - 一个全功能的路由库 168 | * [Fast Route](https://github.com/nikic/FastRoute) - 一个快速路由的库 169 | * [Klein](https://github.com/klein/klein.php) - 一个灵活的路由的库 170 | * [Pux](https://github.com/c9s/Pux) - 另一个快速路由的库 171 | * [Route](https://github.com/thephpleague/route) - 一个基于Fast Route的路由的库 172 | 173 | ## 模板 Templating 174 | *模板化和词法分析的库和工具* 175 | 176 | * [Aura.View](https://github.com/auraphp/Aura.View) - 提供TemplateView和TwoStepView,支持partials, sections和helpers 177 | * [Foil](https://github.com/FoilPHP/Foil) - 另一个原生PHP模板库 178 | * [MtHaml](https://github.com/arnaud-lb/MtHaml) - 一个HAML模板语言的PHP实现 179 | * [Mustache](https://github.com/bobthecow/mustache.php) - 一个Mustache模板语言的PHP实现 180 | * [PHPTAL](http://phptal.org/) - 一个[TAL](https://en.wikipedia.org/wiki/Template_Attribute_Language)模板语言的PHP实现 181 | * [Plates](http://platesphp.com/) - 一个原生PHP模板库 182 | * [Smarty](https://www.smarty.net/) - 一个模板引擎 183 | * [Twig](https://twig.symfony.com/) - 一个全面的模板语言 184 | * [Tale Jade](https://github.com/Talesoft/tale-jade) - Jade模版语言的PHP实现 185 | 186 | ## 静态站点生成器 Static Site Generators 187 | *用来生成web页面的预处理内容的工具* 188 | 189 | * [Couscous](http://couscous.io) - 一个将Markdown转化为漂亮的网站的工具 190 | * [Sculpin](https://sculpin.io) - 转换Markdown和Twig为静态HTML的工具 191 | * [Spress](http://spress.yosymfony.com) - 一个能够将Markdown和Twig转化为HTML的可扩展工具 192 | 193 | ## 超文本传输协议 HTTP 194 | *用于HTTP的库* 195 | 196 | * [Buzz](https://github.com/kriswallsmith/Buzz) - 另一个HTTP客户端 197 | * [Guzzle]( https://github.com/guzzle/guzzle) - 一个全面的HTTP客户端 198 | * [HTTPFul](https://github.com/nategood/httpful) - 一个链式HTTP库 199 | * [HTTPlug](http://httplug.io) - 一个没有绑定特定实现的HTTP客户端的抽象 200 | * [PHP VCR](http://php-vcr.github.io/) - 一个录制和重放HTTP请求的库 201 | * [Requests](https://github.com/rmccue/Requests) - 一个简单的HTTP库 202 | * [Retrofit](https://github.com/tebru/retrofit-php) - 一个能轻松创建REST API客户端的库 203 | * [zend-diactoros](https://github.com/zendframework/zend-diactoros) - PSR-7 HTTP消息实现 204 | 205 | ## 爬虫 Scraping 206 | *用于网站爬取的库* 207 | 208 | * [Embed](https://github.com/oscarotero/Embed) -  一个从web服务或网页中提取的信息的工具 209 | * [Goutte](https://github.com/FriendsOfPHP/Goutte) - 一个简单的web爬取器 210 | * [PHP Spider](https://github.com/mvdbos/php-spider) - 一个可配置和可扩展的PHP web爬虫 211 | 212 | ## 中间件 Middlewares 213 | *使用中间件构建应用程序的库* 214 | 215 | * [Expressive](https://zendframework.github.io/zend-expressive/) - 基于PSR-7的Zend中间件 216 | * [PSR7-Middlewares](https://github.com/oscarotero/psr7-middlewares) - 灵感来源于方便的中间件 217 | * [Relay](https://github.com/relayphp/Relay.Relay) - 一个PHP 5.5 PSR-7的中间件调度器 218 | * [Stack](https://github.com/stackphp) - 一个用于Silex/Symfony的可堆叠的中间件的库 219 | * [zend-stratigility](https://github.com/zendframework/zend-stratigility) - 基于PHP PSR-7之上的中间件之上 220 | 221 | ## 网址 URL 222 | *解析URL的库* 223 | 224 | * [PHP Domain Parser](https://github.com/jeremykendall/php-domain-parser) - 一个本地前缀解析库 225 | * [Purl](https://github.com/jwage/purl) - 一个URL处理库 226 | * [sabre/uri](https://github.com/sabre-io/uri) - 一个URI操作库 227 | * [Uri](https://github.com/thephpleague/uri) - 另一个URL处理库 228 | 229 | ## 电子邮件 Email 230 | *发送和解析邮件的库* 231 | 232 | * [CssToInlineStyles](https://github.com/tijsverkoyen/CssToInlineStyles) - 一个在邮件模板中的内联CSS库 233 | * [Email Reply Parser](https://github.com/willdurand/EmailReplyParser) - 一个邮件回复解析的库 234 | * [Email Validator](https://github.com/nojacko/email-validator) - 一个较小的电子邮件验证库 235 | * [Fetch](https://github.com/tedious/Fetch) - 一个IMAP库 236 | * [Mautic](https://github.com/mautic/mautic) - 邮件营销自动化 237 | * [PHPMailer](https://github.com/PHPMailer/PHPMailer) - 另一个邮件解决方案 238 | * [Stampie](https://github.com/Stampie/Stampie) - 一个邮件服务库,类似于[SendGrid](http://sendgrid.com),[PostMark](https://postmarkapp.com),[MailGun](http://www.mailgun.com)和[Mandrill](http://www.mandrill.com). 239 | * [SwiftMailer](https://swiftmailer.symfony.com) - 一个邮件解决方案 240 | 241 | ## 文件 Files 242 | *文件处理和MIME类型检测的库* 243 | 244 | * [CSV](https://github.com/thephpleague/csv) - 一个CSV数据处理库 245 | * [Flysystem](https://github.com/thephpleague/Flysystem) - 另一个文件系统抽象层 246 | * [Gaufrette](https://github.com/KnpLabs/Gaufrette) - 一个文件系统抽象层 247 | * [Hoa Mime](https://github.com/hoaproject/Mime) - 另一个MIME检测库 248 | * [PHP FFmpeg](https://github.com/PHP-FFmpeg/PHP-FFmpeg/) - 一个用于[FFmpeg](http://www.ffmpeg.org/)视频包装的库 249 | * [UnifiedArchive](https://github.com/wapmorgan/UnifiedArchive) - 一个统一标准的压缩和解压的库 250 | 251 | ## 流 Streams 252 | *处理流的库* 253 | 254 | * [Streamer](https://github.com/fzaninotto/Streamer) - 一个简单的面向对象的流包装库 255 | 256 | ## 依赖注入 Dependency Injection 257 | *实现依赖注入设计模式的库* 258 | 259 | * [Aura.Di](https://github.com/auraphp/Aura.Di) - 一个依赖注入容器 260 | * [Acclimate](https://github.com/AcclimateContainer/acclimate-container) - 一个依赖注入容器和服务定位的通用接口 261 | * [Auryn](https://github.com/rdlowrey/Auryn) - 一个递归的依赖注入容器 262 | * [Container](https://github.com/thephpleague/container) - 另一个可伸缩的依赖注入容器 263 | * [Disco](https://github.com/bitExpert/disco) - 一个兼容PSR-11基于annotation的依赖注入容器 264 | * [PHP-DI](http://php-di.org/) - 一个支持自动装配和PHP配置的依赖注入容器 265 | * [Pimple](https://pimple.symfony.com/) - 一个小的依赖注入容器 266 | * [Symfony DI](https://github.com/symfony/dependency-injection) - 一个依赖注入容器组件 (SF2) 267 | 268 | ## 图像 Imagery 269 | *处理图像的库* 270 | 271 | * [Color Extractor](https://github.com/thephpleague/color-extractor) - 一个从图像中提取颜色的库 272 | * [Glide](https://github.com/thephpleague/glide) - 一个按需处理图像的库 273 | * [Image Hash](https://github.com/jenssegers/imagehash) - 一个用于生成图像哈希感知的库 274 | * [Image Optimizer](https://github.com/psliwa/image-optimizer) - 一个优化图像的库 275 | * [Imagine](http://imagine.readthedocs.io/en/latest/index.html) - 一个图像处理库 276 | * [Intervention Image](https://github.com/Intervention/image) - 另一个图像处理库 277 | * [PHP Image Workshop](https://github.com/Sybio/ImageWorkshop) - 另一个图像处理库 278 | 279 | ## 测试 Testing 280 | *测试代码和生成测试数据的库* 281 | 282 | * [Alice](https://github.com/nelmio/alice) - 富有表现力的一代库 283 | * [AspectMock](https://github.com/Codeception/AspectMock) - 一个PHPUnit/Codeception的模拟框架。 284 | * [Atoum](https://github.com/atoum/atoum) - 一个简单的测试库 285 | * [Behat](http://docs.behat.org/en/v2.5/) - 一个行为驱动开发(BDD)测试框架 286 | * [Codeception](https://github.com/Codeception/Codeception) - 一个全栈测试框架 287 | * [DBUnit](https://github.com/sebastianbergmann/dbunit) - 一个PHPUnit的数据库测试库 288 | * [Faker](https://github.com/fzaninotto/Faker) - 一个伪数据生成库 289 | * [HTTP Mock](https://github.com/InterNations/http-mock) - 一个在单元测试模拟HTTP请求的库 290 | * [Kahlan](https://github.com/kahlan/kahlan) - 全栈Unit/BDD测试框架,内置stub,mock和代码覆盖率的支持 291 | * [Mink](http://mink.behat.org/en/latest/) - Web验收测试 292 | * [Mockery](https://github.com/mockery/mockery) - 一个用于测试的模拟对象的库 293 | * [ParaTest](https://github.com/paratestphp/paratest) - 一个PHPUnit的并行测试库 294 | * [Peridot](https://github.com/peridot-php/peridot) - 一个事件驱动开发的测试框架 295 | * [Phake](https://github.com/mlively/Phake) - 另一个用于测试的模拟对象的库 296 | * [Pho](https://github.com/danielstjules/pho) - 另一个行为驱动开发测试框架 297 | * [PHP-Mock](https://github.com/php-mock/php-mock) - 一个基于PHP函数的模拟库 298 | * [PHPSpec](https://github.com/phpspec/phpspec) - 一个基于功能点设计的单元测试库 299 | * [PHPT](https://qa.php.net/write-test.php) - 一个使用PHP本身的测试工具 300 | * [PHPUnit](https://github.com/sebastianbergmann/phpunit) - 一个单元测试框架 301 | * [Prophecy](https://github.com/phpspec/prophecy) - 一个可选度很高的模拟框架 302 | * [VFS Stream](https://github.com/mikey179/vfsStream) - 一个用于测试的虚拟文件系统流的包装器 303 | 304 | ## 持续集成 Continuous Integration 305 | *持续集成的库和应用* 306 | 307 | * [CircleCI](https://circleci.com) - 一个持续集成平台 308 | * [GitlabCi](https://about.gitlab.com/gitlab-ci/) - 使用GitLab CI测试、构建、部署你的代码,像TravisCI 309 | * [Jenkins](https://jenkins.io/index.html) - 一个[PHP支持](http://jenkins-php.org/index.html)的持续集成平台 310 | * [JoliCi](https://github.com/jolicode/JoliCi) - 一个用PHP编写的由Docker支持的持续集成的客户端 311 | * [PHPCI](https://www.phptesting.org/) - 一个PHP的开源的持续集成平台 312 | * [SemaphoreCI](https://semaphoreci.com/) - 一个开放源码和私人项目的持续集成平台 313 | * [Shippable](https://www.shippable.com/) - 一个基于开源和私人项目持续集成平台的docker 314 | * [Travis CI](https://travis-ci.org/) - 一个持续集成平台 315 | * [Wercker](http://www.wercker.com/) - 一个持续集成平台 316 | 317 | ## 文档 Documentation 318 | *生成项目文档的库* 319 | 320 | * [APIGen](https://github.com/apigen/apigen) - 另一个API文档生成器 321 | * [daux.io](https://github.com/justinwalsh/daux.io) - 一个使用Markdown文件的文档生成器 322 | * [PHP Documentor 2](https://github.com/phpDocumentor/phpDocumentor2) - 一个API文档生成器 323 | * [phpDox](http://phpdox.de/) - 一个PHP项目的文档生成器(不限于API文档) 324 | * [Sami](https://github.com/FriendsOfPHP/Sami) - 一个API文档生成器 325 | 326 | ## 安全 Security 327 | *生成安全的随机数,加密数据,扫描漏洞的库* 328 | 329 | * [Halite](https://paragonie.com/project/halite) - 一个简单的使用[libsodium](https://github.com/jedisct1/libsodium)的加密库 330 | * [HTML Purifier](https://github.com/ezyang/htmlpurifier) - 一个兼容标准的HTML过滤器 331 | * [IniScan](https://github.com/psecio/iniscan) - 一个扫描PHP INI文件安全的库 332 | * [Optimus](https://github.com/jenssegers/optimus) - 基于Knuth乘法散列方法的身份混淆工具 333 | * [PHP Encryption](https://github.com/defuse/php-encryption) - 一个安全的PHP加密库 334 | * [PHP SSH](https://github.com/Herzult/php-ssh) - 一个试验的面向对象的SSH包装库 335 | * [PHPSecLib](http://phpseclib.sourceforge.net/) - 一个纯PHP安全通信库 336 | * [random_compat](https://github.com/paragonie/random_compat) - PHP 5.x 支持`random_bytes()`和`random_int()` 337 | * [RandomLib](https://github.com/ircmaxell/RandomLib) - 一个生成随机数和字符串的库 338 | * [SensioLabs Security Check](https://security.sensiolabs.org/) - 一个为检查Composer依赖提供安全建议的web工具 339 | * [TCrypto](https://github.com/timoh6/TCrypto) - 一个简单的键值加密存储库 340 | * [VAddy](https://vaddy.net/) - 一个持续安全的web应用测试平台 341 | * [Zed](https://www.owasp.org/index.php/OWASP_Zed_Attack_Proxy_Project) - 一个集成的web应用渗透测试工具 342 | 343 | ## 密码 Passwords 344 | *处理和存储密码的库和工具* 345 | 346 | * [GenPhrase](https://github.com/timoh6/GenPhrase) - 一个随机生成安全密码哈希的库 347 | * [Password Compat](https://github.com/ircmaxell/password_compat) - 一个新的PHP5.5密码函数的兼容库 348 | * [Password Policy](https://github.com/ircmaxell/password-policy) - 一个PHP和JavaScript的密码策略库 349 | * [Password Validator](https://github.com/jeremykendall/password-validator) - 一个校验和升级密码哈希的库 350 | * [Password-Generator](https://github.com/hackzilla/password-generator) - 一个生成随机密码的PHP库 351 | * [PHP Password Lib](https://github.com/ircmaxell/PHP-PasswordLib) - 一个生成和校验密码的库 352 | * [phpass](http://www.openwall.com/phpass/) - 一个便携式的密码哈希框架 353 | * [Zxcvbn PHP](https://github.com/bjeavons/zxcvbn-php) - 一个基于Zxcvbn JS的现实的PHP密码强度估计库 354 | 355 | ## 代码分析 Code Analysis 356 | *分析,解析和处理代码库的库和工具* 357 | 358 | * [Better Reflection](https://github.com/Roave/BetterReflection) - 基于AST的反射库,允许分析操作代码 359 | * [Code Climate](https://codeclimate.com) - 一个自动代码审查工具 360 | * [PHP Parser](https://github.com/nikic/PHP-Parser) - 一个PHP编写的PHP解析器 361 | * [PHP Semantic Versioning Checker](https://github.com/tomzx/php-semver-checker) - 一个比较两个源集和确定适当的应用语义版本的命令行实用程序 362 | * [PHPLOC](https://github.com/sebastianbergmann/phploc) - 一个快速测量PHP项目大小的工具 363 | * [PHPQA](https://github.com/EdgedesignCZ/phpqa) - 一个用于运行质量保证工具的工具(phploc, phpcpd, phpcs, pdepend, phpmd, phpmetrics). 364 | * [Qafoo Quality Analyzer](https://github.com/Qafoo/QualityAnalyzer) - 一个可视化指标和源代码的工具 365 | * [Scrutinizer](https://scrutinizer-ci.com/) - 一个审查PHP代码的web工具 366 | * [UBench](https://github.com/devster/ubench) - 一个简单的微型基准检测库 367 | 368 | ## 代码质量 Code Quality 369 | *管理代码质量、格式化和lint的库* 370 | 371 | * [PHP CodeSniffer](https://github.com/squizlabs/PHP_CodeSniffer) - 一个检测PHP、CSS和JS代码标准冲突的库 372 | * [PHP CS Fixer](https://github.com/FriendsOfPHP/PHP-CS-Fixer) - 一个编码标准库 373 | * [PHP Mess Detector](https://phpmd.org/) - 一个扫描代码缺陷,次优代码,未使用的参数等等的库 374 | * [PHPCheckstyle](https://github.com/PHPCheckstyle/phpcheckstyle) - 一个帮助遵守特定的编码惯例的工具 375 | * [PHPCPD](https://github.com/sebastianbergmann/phpcpd) - 一个检测复制和粘贴代码的库 376 | 377 | ## 静态分析 Static Analysis 378 | *PHP代码静态分析的库* 379 | 380 | * [Exakat](https://github.com/exakat/exakat) - 一个PHP的静态分析引擎 381 | * [Mondrian](https://github.com/Trismegiste/Mondrian) - 使用图论的代码分析工具 382 | * [phan](https://github.com/phan/phan) - 一个基于PHP 7+和php-ast扩展的静态分析器 383 | * [PHPCompatibility](https://github.com/wimg/PHPCompatibility) - 一个PHP CodeSniffer的兼容性检查器 384 | * [PhpDependencyAnalysis](https://github.com/mamuz/PhpDependencyAnalysis) - 一个创建可定制依赖图的工具 385 | * [PHP Metrics](https://github.com/phpmetrics/PhpMetrics) - 一个静态测量库 386 | * [PHP Migration](https://github.com/monque/PHP-Migration) - 一个PHP版本升级的静态分析库 387 | * [PHPStan](https://github.com/phpstan/phpstan) - 一个PHP静态分析工具 388 | * [Pslam](https://github.com/vimeo/psalm) - 一个用于在PHP应用程序中查找错误的静态分析工具 389 | 390 | ## Architectural Architectural 391 | *相关的设计模式库,组织代码编程的方法和途径* 392 | 393 | * [Design Patterns PHP](https://github.com/domnikl/DesignPatternsPHP) - 一个使用PHP实现的设计模式存储库 394 | * [Finite](http://yohan.giarel.li/Finite/) - 一个简单的PHP有限状态机 395 | * [Functional PHP](https://github.com/lstrojny/functional-php) - 一个函数式编程库 396 | * [Iter](https://github.com/nikic/iter) - 一个使用生成器提供迭代原语的库 397 | * [Patchwork](http://patchwork2.org/) - 一个重新定义用户的函数库 398 | * [Pipeline](https://github.com/thephpleague/pipeline) - 一个管道模式的实现 399 | * [RulerZ](https://github.com/K-Phoen/rulerz) - 一个强大的规则引擎和规范模式的实现 400 | 401 | ## 调试和分析 Debugging and Profiling 402 | *调试和分析代码的库和工具* 403 | 404 | * [APM](http://pecl.php.net/package/APM) - 一个收集SQLite/MySQL/StatsD错误信息和统计信息的监控扩展 405 | * [Barbushin PHP Console](https://github.com/barbushin/php-console) - 另一个使用Google Chrome的web调试控制台 406 | * [Blackfire.io](https://blackfire.io) - 一个低开销的代码分析器 407 | * [Kint](https://github.com/kint-php/kint) - 一个调试和分析工具 408 | * [PHP Console](https://github.com/Seldaek/php-console) - 一个web调试控制台 409 | * [PHP Debug Bar](http://phpdebugbar.com/) - 一个调试工具栏 410 | * [PHPBench](https://github.com/phpbench/phpbench) - 一个基准测试框架 411 | * [Tideways.io](https://tideways.io/) - Monitoring and profiling tool 412 | * [Tracy](https://github.com/nette/tracy) - A一个简单的错误检测,写日志和时间测量库 413 | * [xDebug](https://github.com/xdebug/xdebug) - 一个调试和分析PHP的工具 414 | * [XHProf](https://github.com/phacility/xhprof) - 一个最初由Facebook开发的分析工具 415 | * [Z-Ray](http://www.zend.com/en/products/server/z-ray) - 一个调试和配置Zend服务器的工具 416 | 417 | ## 构建工具 Build Tools 418 | *项目构建和自动化工具* 419 | 420 | * [Box](https://github.com/box-project/box2) - 一个构建PHAR文件的工具 421 | * [Construct](https://github.com/jonathantorres/construct) - 一个PHP项目的生成器 422 | * [Phing](https://www.phing.info/) - 一个灵感来自于Apache Ant的PHP项目构建系统 423 | 424 | ## 任务运行器 Task Runners 425 | *自动运行任务的库* 426 | 427 | * [Bldr](http://bldr.io/) - 一个构建在Symfony组件上的PHP任务运行器 428 | * [Jobby](https://github.com/jobbyphp/jobby) - 一个没有修改crontab的PHP定时任务管理器 429 | * [Robo](https://github.com/consolidation/Robo) - 一个面向对象配置的PHP任务运行器 430 | * [Task](http://taskphp.github.io/) - 一个灵感来源于Grunt和Gulp的纯PHP任务运行器 431 | 432 | ## 导航 Navigation 433 | *构建导航结构的工具* 434 | 435 | * [KnpMenu](https://github.com/KnpLabs/KnpMenu) - 一个菜单库 436 | 437 | ## 资源管理 Asset Management 438 | *管理,压缩和最小化web站点资源的工具* 439 | 440 | * [JShrink](https://github.com/tedious/JShrink) - 一个JavaScript的最小化库 441 | * [Munee](https://github.com/meenie/munee) - 一个资源优化库 442 | * [Puli](https://github.com/puli/repository) - 一个检测资源绝对路径的库 443 | * [BowerPHP](https://github.com/Bee-Lab/bowerphp) - Bower的一个PHP实现,一个web包管理工具 444 | 445 | ## 地理位置 Geolocation 446 | *地理编码地址和使用纬度经度的库* 447 | 448 | * [GeoCoder](http://geocoder-php.org/) - 一个地理编码库 449 | * [GeoJSON](https://github.com/jmikola/geojson) - 一个GeoJSON的实现 450 | * [GeoTools](https://github.com/thephpleague/geotools) - 一个地理工具相关的库 451 | * [PHPGeo](https://github.com/mjaschen/phpgeo) - 一个简单的地理库 452 | 453 | ## 日期和时间 Date and Time 454 | *处理日期和时间的库* 455 | 456 | * [CalendR](http://yohan.giarel.li/CalendR/) - 一个日历管理库 457 | * [Carbon](https://github.com/briannesbitt/Carbon) - 一个简单的日期时间API扩展 458 | * [Chronos](https://github.com/cakephp/chronos) - 一个支持可变和不可变日期时间的DateTime API扩展 459 | * [Moment.php](https://github.com/fightbulc/moment.php) - 灵感来源于Moment.js的PHP DateTime处理库,支持国际化 460 | * [Yasumi](https://github.com/azuyalabs/yasumi) - 一个帮助你计算节日日期和名称的库 461 | 462 | ## 事件 Event 463 | *时间驱动或实现非阻塞事件循环的库* 464 | 465 | * [Amp](https://github.com/amphp/amp) - 一个事件驱动的不阻塞的I/O库 466 | * [Broadway](https://github.com/broadway/broadway) - 一个事件源和CQRS(命令查询责任分离)库 467 | * [Cake Event](https://github.com/cakephp/event) - 一个事件调度的库 (CP) 468 | * [Elephant.io](https://github.com/Wisembly/Elephant.io) - 另一个web socket库 469 | * [Evenement](https://github.com/igorw/evenement) - 一个事件调度的库 470 | * [Event](https://github.com/thephpleague/event) - 一个专注于域名事件的库 471 | * [Hoa EventSource](https://github.com/hoaproject/Eventsource) - 一个事件源库 472 | * [Hoa WebSocket](https://github.com/hoaproject/Websocket) - 另一个web socket库 473 | * [Prooph Event Store](https://github.com/prooph/event-store) - 一个持久化事件消息的事件源组件 474 | * [Ratchet](https://github.com/ratchetphp/Ratchet) - 一个web socket库 475 | * [React](https://github.com/reactphp/react) - 一个事件驱动的非阻塞I/O库. 476 | * [RxPHP](https://github.com/ReactiveX/RxPHP) - 一个reactive扩展库 477 | * [Workerman](https://github.com/walkor/Workerman) - 一个事件驱动的不阻塞的I/O库 478 | 479 | ## 日志 Logging 480 | *生成和处理日志文件的库* 481 | 482 | * [Monolog](https://github.com/Seldaek/monolog) - 一个全面的日志工具 483 | 484 | ## 电子商务 E-commerce 485 | *处理支付和构建在线电子商务商店的库和应用* 486 | 487 | * [Money](https://github.com/moneyphp/money) - 一个Fowler金钱模式的PHP实现 488 | * [OmniPay](https://github.com/thephpleague/omnipay) - 一个框架混合了多网关支付处理的库 489 | * [Payum](https://github.com/payum/payum) - 一个支付抽象库 490 | * [Shopware](https://github.com/shopware/shopware) - 一个可高度定制的电子商务软件 491 | * [Swap](https://github.com/florianv/swap) - 一个汇率库 492 | * [Sylius](https://sylius.com/) - 一个开源的电子商务解决方案 493 | 494 | ## PDF PDF 495 | *处理PDF文件的库和软件* 496 | 497 | * [Dompdf](https://github.com/dompdf/dompdf) - 一个将HTML转换为PDF的工具 498 | * [PHPPdf](https://github.com/psliwa/PHPPdf) - 一个将XML文件转换为PDF和图片的库 499 | * [Snappy](https://github.com/KnpLabs/snappy) - 一个PDF和图像生成器库 500 | * [WKHTMLToPDF](https://github.com/wkhtmltopdf/wkhtmltopdf) - 一个将HTML转换为PDF的工具 501 | 502 | ## Office Office 503 | *Libraries for working with office suite documents.* 504 | 505 | * [PHPPowerPoint](https://github.com/PHPOffice/PHPPresentation) - 一个处理PPT文档的库 506 | * [PHPWord](https://github.com/PHPOffice/PHPWord) - 一个处理Word文档的库 507 | * [PHPSpreadsheet](https://github.com/PHPOffice/PhpSpreadsheet) - 一个纯PHP的读写电子表格的库 (successor of PHPExcel) 508 | 509 | ## 数据库 Database 510 | *使用对象关系映射(ORM)或数据映射技术的数据库交互的库* 511 | 512 | * [Atlas.Orm](https://github.com/atlasphp/Atlas.Orm) - 一个PHP持久化模型数据映射的实现 513 | * [Aura.Sql](https://github.com/auraphp/Aura.Sql) - 一个使用PDO的ORM 514 | * [Aura.SqlQuery](https://github.com/auraphp/Aura.SqlQuery) - 支持MySQL, PostgreSQL, SQLite和Microsoft SQL Server的ORM 515 | * [Baum](https://github.com/etrepat/baum) - 一个Eloquent的嵌套集实现 516 | * [Cake ORM](https://github.com/cakephp/orm) - 对象关系映射工具,利用DataMapper模式实现 (CP) 517 | * [Doctrine Extensions](https://github.com/Atlantic18/DoctrineExtensions) - 一个Doctrine行为扩展的集合 518 | * [Doctrine](http://www.doctrine-project.org/) - 一个全面的DBAL和ORM 519 | * [Eloquent](https://github.com/illuminate/database) - 一个简单的ORM(L5) 520 | * [LazyRecord](https://github.com/corneltek/LazyRecord) - 一个简单、可扩展、高性能的ORM 521 | * [Pomm](https://github.com/chanmix51/Pomm) - 一个PostgreSQL对象模型管理器 522 | * [Propel](http://propelorm.org/) - 一个快速的ORM,迁移库和查询构架器 523 | * [ProxyManager](https://github.com/Ocramius/ProxyManager) - 一个为数据映射生成代理对象的工具集 524 | * [RedBean](https://redbeanphp.com/index.php) - 一个轻量级,低配置的ORM 525 | * [Spot2](https://github.com/spotorm/spot2) - 一个MySQL的ORM映射器 526 | 527 | ## 迁移 Migrations 528 | *帮助管理数据库模式和迁移的库* 529 | 530 | * [Doctrine Migrations](http://docs.doctrine-project.org/projects/doctrine-migrations/en/latest/toc.html) - 一个Doctrine的迁移库 531 | * [Migrations](https://github.com/icomefromthenet/Migrations) - 一个迁移管理库 532 | * [Phinx](https://github.com/cakephp/phinx) - 另一个数据库迁移的管理库 533 | * [PHPMig](https://github.com/davedevelopment/phpmig) - 另一个迁移管理库 534 | * [Ruckusing](https://github.com/ruckus/ruckusing-migrations) - 基于PHP下ActiveRecord的数据库迁移,支持MySQL, Postgres, SQLite 535 | 536 | ## NoSQL NoSQL 537 | *处理NoSQL后端的库* 538 | 539 | * [PHPMongo](https://github.com/sokil/php-mongo) - 一个MongoDB ORM. 540 | * [Predis](https://github.com/nrk/predis) - 一个功能完整的Redis库 541 | 542 | ## 队列 Queue 543 | *处理事件和任务队列的库* 544 | 545 | * [Bernard](https://github.com/bernardphp/bernard) - 一个多后端抽象库 546 | * [BunnyPHP](https://github.com/jakubkulhan/bunny) - 一个高性能的纯PHP AMQP(RabbitMQ)同步和异步(ReactPHP)库 547 | * [Pheanstalk](https://github.com/pda/pheanstalk) - 一个Beanstalkd客户端库 548 | * [PHP AMQP](https://github.com/php-amqplib/php-amqplib) - 一个纯PHP AMQP库 549 | * [Tarantool Queue](https://github.com/tarantool-php/queue) - PHP绑定Tarantool队列 550 | * [Thumper](https://github.com/php-amqplib/Thumper) - 一个RabbitMQ模式库 551 | 552 | ## 搜索 Search 553 | *在数据上索引和执行查询的库和软件* 554 | 555 | * [Elastica](https://github.com/ruflin/Elastica) - ElasticSearch的客户端库 556 | * [ElasticSearch PHP](https://github.com/elastic/elasticsearch-php) - [ElasticSearch](https://www.elastic.co/)的官方客户端库 557 | * [Solarium](http://www.solarium-project.org/) - [Solr](http://lucene.apache.org/solr/)的客户端库 558 | * [Sphinx Search](https://github.com/ripaclub/sphinxsearch) - Sphinx搜索库,提供SphinxQL索引和搜索的功能 559 | * [SphinxQL query builder](http://foolcode.github.io/SphinxQL-Query-Builder/) - [Sphinx](http://sphinxsearch.com/)搜索引擎的的查询库 560 | 561 | ## 命令行 Command Line 562 | *关于命令行工具的库* 563 | 564 | * [Aura.Cli](https://github.com/auraphp/Aura.Cli) - 一个命令行库 565 | * [Boris](https://github.com/borisrepl/boris) - 一个微型PHP REPL 566 | * [Cilex](https://github.com/Cilex/Cilex) - 一个构建命令行工具的微型框架 567 | * [CLI Menu](https://github.com/php-school/cli-menu) - 一个构建CLI菜单的库 568 | * [CLIFramework](https://github.com/c9s/CLIFramework) - 一个支持完全zsh/bash、子命令和选项约束的命令行框架,这也归功于phpbrew 569 | * [CLImate](https://github.com/thephpleague/climate) - 一个输出带颜色的和特殊格式的命令行库 570 | * [Commando](https://github.com/nategood/commando) - 另一个简单的命令行选择解析器 571 | * [Cron Expression](https://github.com/mtdowling/cron-expression) - 一个计算cron运行日期的库 572 | * [GetOpt](https://github.com/getopt-php/getopt-php) - 一个命令行选择解析器 573 | * [GetOptionKit](https://github.com/c9s/GetOptionKit) - 另一个命令行选择解析器 574 | * [Hoa Console](https://github.com/hoaproject/Console) - 另一个命令行库 575 | * [PsySH](https://github.com/bobthecow/psysh) - 另一个PHP REPL 576 | * [ShellWrap](https://github.com/MrRio/shellwrap) - -一个简单的命令行包装库 577 | 578 | ## 身份验证和授权 Authentication and Authorization 579 | *实现身份验证和授权的库* 580 | 581 | * [Aura.Auth](https://github.com/auraphp/Aura.Auth) - 一个身份认证的库 582 | * [SocialConnect Auth](https://github.com/socialConnect/auth) - 一个开源的social sign (OAuth1\OAuth2\OpenID\OpenIDConnect) 583 | * [Json Web Token](https://github.com/lcobucci/jwt) - 使用JSON Tokens进行身份验证和信息传输 584 | * [OAuth 1.0 Client](https://github.com/thephpleague/oauth1-client) - 一个OAuth 1.0客户端的库 585 | * [OAuth 2.0 Client](https://github.com/thephpleague/oauth2-client) - 一个OAuth 2.0客户端的库 586 | * [OAuth2 Server](http://bshaffer.github.io/oauth2-server-php-docs/) - 另一个OAuth2服务器实现 587 | * [OAuth2 Server](http://oauth2.thephpleague.com/) - 另一个OAuth2服务器实现 588 | * [Opauth](https://github.com/opauth/opauth) - 一个多渠道的身份验证框架 589 | * [PHP oAuthLib](https://github.com/Lusitanian/PHPoAuthLib) - 另一个OAuth库 590 | * [Sentinel Social](https://cartalyst.com/manual/sentinel-social/2.0) - 一个社交网络身份验证库 591 | * [Sentinel](https://cartalyst.com/manual/sentinel/2.0) - 一个混合的身份验证和授权的框架库 592 | * [TwitterOAuth](https://github.com/abraham/twitteroauth) - 一个Twitter OAuth库 593 | 594 | ## 标记 Markup 595 | *处理标记的库* 596 | 597 | * [Cebe Markdown](https://github.com/cebe/markdown) - 一个快速的可扩展的Markdown解析器 598 | * [CommonMark PHP](https://github.com/thephpleague/commonmark) - 一个对[CommonMark spec](http://spec.commonmark.org/)全支持的Markdown解析器 599 | * [Decoda](https://github.com/milesj/decoda) - 一个轻量级标记解析库 600 | * [Emoji](https://github.com/heyupdate/Emoji) - 一个把Unicode字符和名称转换为表情符号图片的库 601 | * [HTML to Markdown](https://github.com/thephpleague/html-to-markdown) - 将HTML转化为Markdown 602 | * [HTML5 PHP](https://github.com/Masterminds/html5-php) - 一个HTML5解析和序列化库 603 | * [Parsedown](https://github.com/erusev/parsedown) - 另一个Markdown解析器 604 | * [PHP Markdown](https://github.com/michelf/php-markdown) - 一个Markdown解析器 605 | 606 | ## 字符串 Strings 607 | *解析和处理字符串的库* 608 | 609 | * [Agent](https://github.com/jenssegers/agent) - 一个基于Mobiledetect的桌面/手机端user agent解析库 610 | * [ANSI to HTML5](https://github.com/sensiolabs/ansi-to-html) - 一个将ANSI转化为HTML5的库 611 | * [Color Jizz](https://github.com/mikeemoo/ColorJizz-PHP) - 处理和转换颜色的库 612 | * [Device Detector](https://github.com/matomo-org/device-detector) - 另一个解析user agent字符串的库 613 | * [Hoa String](https://github.com/hoaproject/Ustring) - 另一个UTF-8字符串库 614 | * [Jieba-PHP](https://github.com/fukuball/jieba-php) - Python的jieba的PHP端口,自然语言处理的中文文本分词 615 | * [Mobile-Detect](https://github.com/serbanghita/Mobile-Detect) - 一个用于检测移动设备的轻量级PHP类(包括平板电脑) 616 | * [Patchwork UTF-8](https://github.com/nicolas-grekas/Patchwork-UTF8) - 一个处理UTF-8字符串的便携库 617 | * [Slugify](https://github.com/cocur/slugify) - 转换字符串到slug的库 618 | * [SQL Formatter](https://github.com/jdorn/sql-formatter/) - 一个格式化SQL语句的库 619 | * [Stringy](https://github.com/danielstjules/Stringy) - 一个多字节支持的字符串处理库 620 | * [UA Parser](https://github.com/tobie/ua-parser/tree/master/php) - 一个解析user agent字符串的库 621 | * [URLify](https://github.com/jbroadway/urlify) - 一个Django中URLify.js的PHP版本 622 | * [UUID](https://github.com/ramsey/uuid) - 生成UUIDs的库 623 | 624 | ## 数字 Numbers 625 | *处理数字的库* 626 | 627 | * [ByteUnits](https://github.com/gabrielelana/byte-units) - 一个在二进制和度量系统中解析,格式化和转换字节单元的库 628 | * [LibPhoneNumber for PHP](https://github.com/giggsey/libphonenumber-for-php) - 一个Google电话号码处理的PHP实现库 629 | * [PHP Conversion](https://github.com/Crisu83/php-conversion) - 另一个用于度量单位间转换的库 630 | * [PHP Units of Measure](https://github.com/triplepoint/php-units-of-measure) - 一个计量单位转换的库 631 | 632 | ## 过滤和验证 Filtering and Validation 633 | *过滤和验证数据的库* 634 | 635 | * [Aura.Filter](https://github.com/auraphp/Aura.Filter) - 一个验证库 636 | * [Cake Validation](https://github.com/cakephp/validation) - 另一个验证库 (CP) 637 | * [Filterus](https://github.com/ircmaxell/filterus) - 一个简单的PHP过滤库 638 | * [ISO-codes](https://github.com/ronanguilloux/IsoCodes) - 一个验证各种ISO和ZIP编码的库(IBAN, SWIFT/BIC, BBAN, VAT, SSN, UKNIN) 639 | * [MetaYaml](https://github.com/romaricdrigon/MetaYaml) - 一个支持YAML,JSON和XML的模式验证库 640 | * [Respect Validation](https://github.com/Respect/Validation) - 一个简单的验证库 641 | * [Upload](https://github.com/brandonsavage/Upload) - 一个处理文件上传和验证的库 642 | * [Valitron](https://github.com/vlucas/valitron) - 另一个验证库 643 | * [Volan](https://github.com/serkin/Volan) - 另一个简单的验证库 644 | 645 | ## API API 646 | *开发REST-ful API的库和web工具* 647 | 648 | * [API Platform](https://api-platform.com ) - 暴露出REST API的项目,包含JSON-LD, Hydra格式 649 | * [Apigility](https://github.com/zfcampus/zf-apigility-skeleton) - 一个使用Zend Framework 2构建的API构建器 650 | * [Drest](https://github.com/leedavis81/drest) - 一个将Doctrine实体暴露为REST资源节点的库 651 | * [HAL](https://github.com/blongden/hal) - 一个超文本应用语言(HAL)构建库 652 | * [Hateoas](https://github.com/willdurand/Hateoas) - 一个HOATEOAS REST web服务库 653 | * [Negotiation](https://github.com/willdurand/Negotiation) - 一个内容协商库 654 | * [Restler](https://github.com/Luracast/Restler) - 一个将PHP方法暴露为RESTful web API的轻量级框架 655 | * [wsdl2phpgenerator](https://github.com/wsdl2phpgenerator/wsdl2phpgenerator) - 一个从SOAP WSDL文件生成PHP类的工具 656 | 657 | ## 缓存 Caching 658 | *缓存数据的库* 659 | 660 | * [Alternative PHP Cache (APC)](http://php.net/manual/en/book.apc.php) - 打开PHP操作码缓存 661 | * [APIx Cache](https://github.com/apix/cache) -  一个轻量级的PSR-6缓存 662 | * [CacheTool](https://github.com/gordalina/cachetool) - 一个使用命令行清除apc/opcode缓存的工具 663 | * [Cake Cache](https://github.com/cakephp/cache) - 一个缓存库 (CP) 664 | * [Doctrine Cache](https://github.com/doctrine/cache) - 一个缓存库 665 | * [Metaphore](https://github.com/sobstel/metaphore) - 一个缓存失效防范的库,使用信号标记阻止dogpile影响 666 | * [Stash](https://github.com/tedious/Stash) - 另一个缓存库 667 | * [Zend Cache](https://github.com/zendframework/zend-cache) - 另一个缓存库 (ZF2) 668 | 669 | ## 数据结构和存储 Data Structure and Storage 670 | *实现数据结构和存储技术的库* 671 | 672 | * [Cake Collection](https://github.com/cakephp/collection) - 一个简单的集合库 (CP) 673 | * [Collections](https://github.com/italolelis/collections) - 一个PHP的集合抽象库 674 | * [Fractal](https://github.com/thephpleague/fractal) - 一个转换复杂数据结构到JSON输出的库 675 | * [Ginq](https://github.com/akanehara/ginq) - 另一个基于.NET实现的PHP的LINQ库 676 | * [JsonMapper](https://github.com/cweiske/jsonmapper) - 一个将内嵌JSON结构映射为PHP类的库 677 | * [Knapsack](https://github.com/DusanKasan/Knapsack) - 一个集合的库,灵感来自Clojure的相关库 678 | * [PINQ](https://github.com/TimeToogo/Pinq) - 一个基于.NET实现的PHP的LINQ(Language Integrated Query)库 679 | * [Porter](https://github.com/ScriptFUSION/Porter) - 数据导入的抽象框架 680 | * [Serializer](https://github.com/schmittjoh/serializer) - 一个序列化和反序列化数据的库 681 | * [YaLinqo](https://github.com/Athari/YaLinqo) - 另一个PHP的LINQ库 682 | * [Zend Serializer](https://github.com/zendframework/zend-serializer) - 另一个序列化和反序列化数据的库 (ZF2) 683 | 684 | ## 通知 Notifications 685 | *处理通知软件的库* 686 | 687 | * [JoliNotif](https://github.com/jolicode/JoliNotif) - 一个跨平台的桌面通知库(支持Growl, notify-send, toaster等) 688 | * [Notification Pusher](https://github.com/Ph3nol/NotificationPusher) - 一个设备推送通知的独立库 689 | * [Notificato](https://github.com/mac-cain13/notificato) - 一个处理推送通知的库 690 | * [Notificator](https://github.com/namshi/notificator) - 一个轻量级的通知库 691 | * [Php-pushwoosh](https://github.com/gomoob/php-pushwoosh) - 一个使用Pushwoosh REST Web服务轻松推送通知的PHP库 692 | 693 | ## 部署 Deployment 694 | *项目部署库* 695 | 696 | * [Deployer](https://github.com/deployphp/deployer) - 一个部署工具 697 | * [Envoy](https://github.com/laravel/envoy) - 一个用PHP运行SSH任务的工具 698 | * [Rocketeer](https://github.com/rocketeers/rocketeer) - PHP世界里的一个快速简单的部署器 699 | 700 | ## 国际化和本地化 Internationalisation and Localisation 701 | *国际化(I18n)和本地化(L10n)的库* 702 | 703 | * [Aura.Intl](https://github.com/auraphp/Aura.Intl) - 一个国际化的库 704 | * [Cake I18n](https://github.com/cakephp/i18n) - 消息国际化和日期和数字的本地化 (CP) 705 | 706 | ## 第三方API Third Party APIs 707 | *访问第三方API的库* 708 | 709 | * [Amazon Web Service SDK](https://github.com/aws/aws-sdk-php) - PHP AWS SDK官方库 710 | * [Campaign Monitor](http://campaignmonitor.github.io/createsend-php/) - Campaign Monitor官方PHP库 711 | * [Dropbox SDK](https://github.com/dropbox/dropbox-sdk-php) - Dropbox SDK官方PHP库 712 | * [Github](https://github.com/KnpLabs/php-github-api) - 一个Github API交互库 713 | * [Stripe](https://github.com/stripe/stripe-php) - Stripe官方PHP库 714 | * [Twilio](https://github.com/twilio/twilio-php) - Twilio官方PHP REST API 715 | 716 | ## 扩展 Extensions 717 | *帮助构建PHP扩展的库* 718 | 719 | * [PHP CPP](http://www.php-cpp.com/) - 一个开发PHP扩展的C++库 720 | * [Zephir](https://github.com/phalcon/zephir) - 用于开发PHP扩展,且介于PHP和C++之间的编译语言 721 | 722 | ## 杂项 Miscellaneous 723 | *创建一个开发环境的软件* 724 | 725 | * [Annotations](https://github.com/doctrine/annotations) - 一个注释库(Doctrine的一部分) 726 | * [BotMan](https://github.com/botman/botman) - 一个构建跨平台聊天机器人的PHP框架库 727 | * [Cake Utility](https://github.com/cakephp/utility) - 工具类如Inflector,字符串,哈希,安全和XML (CP) 728 | * [Chief](https://github.com/adamnicholson/Chief) - 一个命令总线库 729 | * [ClassPreloader](https://github.com/ClassPreloader/ClassPreloader) - 一个优化自动加载的库 730 | * [Country List](https://github.com/umpirsky/country-list) - 所有带有名称和ISO 3166-1编码的国家列表 731 | * [Embera](https://github.com/mpratt/Embera) - 一个Oembed消费库 732 | * [Essence](https://github.com/essence/essence) - 一个用于提取网络媒体的库 733 | * [Graphviz](https://github.com/alexandresalome/graphviz) - 一个图形库 734 | * [Hprose-PHP](https://github.com/hprose/hprose-php) - 一个很牛的RPC库,现在支持25+种语言 735 | * [JSON Lint](https://github.com/Seldaek/jsonlint) - 一个JSON lint工具 736 | * [JSONPCallbackValidator](https://github.com/willdurand/JsonpCallbackValidator) - 验证JSONP回调的库 737 | * [Metrics](https://github.com/beberlei/metrics) - 一个简单的度量API库 738 | * [noCAPTCHA](https://github.com/ARCANEDEV/noCAPTCHA) - 一个帮助使用谷歌noCAPTCHA (reCAPTCHA)的工具 739 | * [Nmap](https://github.com/willdurand/nmap) - 一个[Nmap](https://nmap.org/) PHP包装器 740 | * [Pagerfanta](https://github.com/whiteoctober/Pagerfanta) - 一个分页库 741 | * [PHP PassBook](https://github.com/eymengunay/php-passbook) - 一个iOS PassBook PHP库 742 | * [PHP-ML](https://github.com/php-ai/php-ml) - 一个机器学习的PHP库 743 | * [PHPCR](https://github.com/phpcr/phpcr) - 一个Java内容存储库(JCR)的PHP实现 744 | * [PHPStack](http://dunkels.com/adam/phpstack/) - 一个PHP编写的TCP/IP栈概念 745 | * [print_o](https://github.com/koriym/print_o) - 一个对象图的可视化器 746 | * [Procrastinator](https://github.com/lstrojny/Procrastinator) - 一个运行耗时任务的库 747 | * [Prooph Service Bus](https://github.com/prooph/service-bus) - 轻量级的消息总线,支持CQRS和微服务 748 | * [RMT](https://github.com/liip/RMT) - 一个编写版本和发布软件的库 749 | * [sabre/vobject](https://github.com/sabre-io/vobject) - 一个解析VCard和iCalendar对象的库 750 | * [Slimdump](https://github.com/webfactory/slimdump) - 一个简单的MySQL dumper工具 751 | * [Spork](https://github.com/kriswallsmith/spork) - 一个处理forking的库 752 | * [SuperClosure](https://github.com/jeremeamia/super_closure) - 一个允许闭包序列化的库 753 | * [Symfony VarDumper](http://symfony.com/doc/current/components/var_dumper.html) - 一个dumper库(SF2) 754 | * [Underscore](http://anahkiasen.github.io/underscore-php/) - 一个Undersccore JS库的PHP实现 755 | * [Whoops](https://github.com/filp/whoops) - 一个不错的错误处理库 756 | 757 | ## PHP安装 PHP Installation 758 | *在你的电脑上帮助安装和管理PHP的工具* 759 | 760 | * [HomeBrew PHP](https://github.com/Homebrew/homebrew-php) - 一个HomeBrew的PHP通道 761 | * [HomeBrew](https://brew.sh/) - 一个OSX包管理器 762 | * [PHP Brew](https://github.com/phpbrew/phpbrew) - 一个PHP版本管理和安装器 763 | * [PHP Build](https://github.com/php-build/php-build) - 另一个PHP版本安装器 764 | * [PHP OSX](https://php-osx.liip.ch/) - 一个OSX下的PHP安装器 765 | * [VirtPHP](http://virtphp.org/) - 一个创建和管理独立PHP环境的工具 766 | 767 | ## 开发环境 Development Environment 768 | *创建沙盒开发环境的软件和工具* 769 | 770 | * [Ansible](https://www.ansible.com/) - 一个非常简单的编制框架 771 | * [Phansible](http://phansible.com/) - 一个用Ansible构建PHP开发虚拟机的web工具 772 | * [Protobox](https://www.getprotobox.com/) - 另一个构建PHP开发虚拟机的web工具 773 | * [PuPHPet](https://puphpet.com/) - 一个构建PHP开发虚拟机的web工具 774 | * [Puppet](https://puppet.com/) - 一个服务器自动化框架和应用 775 | * [Vagrant](https://www.vagrantup.com/) - 一个便携的开发环境工具 776 | * [Docker](https://www.docker.com/) - 一个容器化的平台 777 | 778 | ## 虚拟机 Virtual Machines 779 | *相关的PHP虚拟机* 780 | 781 | * [Hack](http://hacklang.org/) - 一个PHP进行无缝操作的HHVM编程语言 782 | * [HHVM](https://github.com/facebook/hhvm) - Facebook出品的PHP虚拟机,Runtime和JIT 783 | 784 | ## 文本编辑器和IDE Text Editors and IDEs 785 | *支持PHP的文本编辑器和集成开发环境(IDE)* 786 | 787 | * [Atom](https://atom.io/) - 一个文本编辑器 788 | * [Atom IDE](https://ide.atom.io/) - 一个扩展自Atom的IDE 789 | * [Eclipse for PHP Developers](https://www.eclipse.org/downloads/) - 一个基于Eclipse平台的PHP IDE 790 | * [Netbeans](https://netbeans.org) - 一个支持PHP和HTML5的IDE 791 | * [PhpStorm](http://www.jetbrains.com/phpstorm/) - 一个商业PHP IDE 792 | * [VS Code](https://code.visualstudio.com/) - 一个开源的代码编辑器 793 | 794 | ## Web应用 Web Applications 795 | *基于Web的应用和工具* 796 | 797 | * [3V4L](https://3v4l.org/) - 一个在线的PHP和HHVM shell 798 | * [DBV](https://dbv.vizuina.com/) - 一个数据库版本控制应用 799 | * [PHP Queue](https://github.com/CoderKungfu/php-queue) - A一个管理后端队列的应用 800 | * [MailCatcher](https://github.com/sj26/mailcatcher) - 一个抓取和查看邮件的web工具 801 | * [Cachet](https://github.com/cachethq/cachet) - 开源状态页面系统 802 | * [phpRedisAdmin](https://github.com/ErikDubbelboer/phpRedisAdmin) - 一个用于管理[Redis](http://redis.io/)数据库的简单web界面 803 | * [phpMyAdmin](https://github.com/phpmyadmin/phpmyadmin) - 一个MySQL/MariaDB的web界面 804 | * [Adminer](https://www.adminer.org/) - 一个数据库管理工具 805 | * [Grav](https://github.com/getgrav/grav) - 一个现代的flat-file的CMS 806 | * [Lychee](https://github.com/electerious/Lychee) - 一个易于使用和好看的照片管理系统 807 | 808 | ## 基础架构 Infrastructure 809 | *提供PHP应用和服务的基础架构* 810 | 811 | * [appserver.io](https://appserver.io/) - 一个用PHP写的多线程的PHP应用服务器 812 | * [php-pm](https://github.com/php-pm/php-pm) - 一个PHP应用的进程管理器、修改器和负载平衡器 813 | 814 | ## PHP网站 PHP Websites 815 | *PHP相关的有用的网站* 816 | 817 | * [Nomad PHP](https://nomadphp.com/) - 一个在线PHP学习资源 818 | * [PHP Best Practices](https://phpbestpractices.org/) - 一个PHP最佳实践指南 819 | * [PHP FIG](https://www.php-fig.org/) - PHP框架交互组 820 | * [PHP Mentoring](https://php-mentoring.org/) - 点对点PHP导师组织 821 | * [PHP Package Development Standards](http://php-pds.com) - PHP包开发标准 822 | * [PHP School](https://www.phpschool.io/) - PHP的开源学习 823 | * [PHP Security](http://phpsecurity.readthedocs.io/en/latest/index.html) - 一个PHP安全指南 824 | * [PHP The Right Way](http://www.phptherightway.com/) - 一个PHP最佳实践的快速指引手册 825 | * [PHP UG](http://php.ug) - 一个帮助用户定位最近的PHP用户组(UG)的网站 826 | * [PHP Versions](http://phpversions.info/) - 哪些版本的PHP可以用在哪几种流行的Web主机上的列表 827 | * [PHP Weekly](http://www.phpweekly.com/archive.html) - 一个PHP新闻周刊 828 | * [PHPTrends](https://phptrends.com/) - 一个快速增长的PHP类库的概述 829 | * [Securing PHP](http://securingphp.com/) - 一个关于PHP安全和库的建议的简报 830 | * [Seven PHP](https://7php.com/) - 一个PHP社区成员采访的网站 831 | * [PHP Annotated Monthly](https://blog.jetbrains.com/phpstorm/category/php-annotated-monthly/) - 一个PHP新闻的月度摘要 832 | 833 | ## 其他网站 Other Websites 834 | *web开发相关的有用网站* 835 | 836 | * [Atlassian Git Tutorials](https://www.atlassian.com/git) - 一个Git教程系列 837 | * [Hg Init](http://hginit.com/) - 一个Mercurial教程系列 838 | * [Learning Linux](https://linuxjourney.com/) - 一个学习linux的个网站 839 | * [Semantic Versioning](https://semver.org/) - 一个解析语义版本的网站 840 | * [Servers for Hackers](https://serversforhackers.com/) - 一个关于服务器管理的新闻通讯 841 | * [The Open Web Application Security Project (OWASP)](https://www.owasp.org/index.php/Main_Page) - 一个开放软件安全社区 842 | * [WebSec IO](https://websec.io/) - 一个web安全社区资源 843 | 844 | ## PHP书籍 PHP Books 845 | *PHP相关的非常好的书籍* 846 | 847 | * [Functional Programming in PHP](https://www.functionalphp.com/) - 这本书将告诉你如何利用PHP5.3+的新功能的认识函数式编程的原则 848 | * [Grumpy PHPUnit](https://leanpub.com/grumpy-phpunit) - 一本Chris Hartjes关于使用PHPUnit进行单元测试的书 849 | * [Mastering Object-Orientated PHP](https://www.brandonsavage.net/) - 一本Brandon Savage关于PHP面向对象的书 850 | * [Modern PHP New Features and Good Practices](http://shop.oreilly.com/product/0636920033868.do) - 一本Josh Lockhart关于新的PHP功能和最佳做法的书 851 | * [Modernizing Legacy Applications in PHP](https://leanpub.com/mlaphp) - 一本Paul M.Jones关于遗留PHP应用进行现代化的书 852 | * [PHP 7 Upgrade Guide](https://leanpub.com/php7) - 一本Colin O'Dell的包含所有PHP 7功能和改变的书 853 | * [PHP Pandas](https://daylerees.com/php-pandas/) - 一本Dayle Rees关于如何学习写PHP的书 854 | * [Scaling PHP Applications](http://www.scalingphpbook.com) - 一本Steve Corona关于扩展PHP应用程序的电子书 855 | * [Securing PHP: Core Concepts](https://leanpub.com/securingphp-coreconcepts) - 一本Chris Cornutt关于PHP常见安全条款和实践的书 856 | * [Signaling PHP](https://leanpub.com/signalingphp) - 一本Cal Evans关于在CLI脚本捕获PCNTL信号的书 857 | * [The Grumpy Programmer's Guide to Building Testable PHP Applications](https://leanpub.com/grumpy-testing) - 一本Chris Hartjes关于构建PHP应用程序测试的书 858 | * [XML Parsing with PHP](https://www.phparch.com/books/xml-parsing-with-php/) - 这本书涵盖的解析和验证XML文档,利用XPath表达式,使用命名空间,以及如何创建和修改XML文件的编程 859 | * [Domain-Driven Design in PHP](https://leanpub.com/ddd-in-php) - 展示PHP DDD风格的实例 860 | 861 | ## 其他书籍 Other Books 862 | *与一般计算和web开发相关的书* 863 | 864 | * [Elasticsearch: The Definitive Guide](https://www.elastic.co/guide/index.html) - Clinton Cormley和Zachary Tong编写的与Elasticsearch工作的一本指南 865 | * [Eloquent JavaScript](http://eloquentjavascript.net/) - Marijin Haverbeke关于JavaScript编程的一本书 866 | * [Head First Design Patterns](http://www.headfirstlabs.com/books/hfdp/) - 解说软件设计模式的一本书 867 | * [Pro Git](https://git-scm.com/book/en/v2) - Scott Chacon和Ben Straub关于Git的一本书 868 | * [The Linux Command Line](http://linuxcommand.org/tlcl.php) - William Shotts关于Linux命令行的一本书 869 | * [The Tangled Web — Securing Web Applications](https://www.amazon.com/Tangled-Web-Securing-Modern-Applications/dp/1593273886) - Michal Zalewski关于web应用安全的一本书 870 | * [Understanding Computation](http://computationbook.com) - Tom Stuart关于计算理论的一本书 871 | * [Vagrant Cookbook](https://leanpub.com/vagrantcookbook) - Erika Heidi关于创建 Vagrant环境的一本书 872 | 873 | ## PHP视频 PHP Videos 874 | *PHP相关的非常不错的视频* 875 | 876 | * [Nomad PHP Lightning Talks](https://www.youtube.com/c/nomadphp) - PHP社区成员10到15分钟的快速会谈 877 | * [PHP UK Conference](https://www.youtube.com/user/phpukconference/videos) - 一个PHP英国会议的视频集合 878 | * [Programming with Anthony](https://www.youtube.com/playlist?list=PLM-218uGSX3DQ3KsB5NJnuOqPqc5CW2kW) - Anthony Ferrara的视频系列 879 | * [Taking PHP Seriously](https://www.infoq.com/presentations/php-history) - 来自Facebook Keith Adams 讲述PHP优势 880 | 881 | ## PHP播客 PHP Podcasts 882 | *专注于PHP话题的博客* 883 | 884 | * [PHP Town Hall](https://phptownhall.com/) - 一个随意的Ben Edmunds和Phil Sturgeon的PHP播客 885 | * [PHP Roundtable](https://www.phproundtable.com/) - PHP Roundtable是一个讨论PHP开发者关心话题的临时聚会 886 | 887 | ## PHP阅读 PHP Reading 888 | *PHP相关的阅读资料* 889 | 890 | * [Composer Primer](https://daylerees.com/composer-primer/) - Composer初级使用 891 | * [Composer Stability Flags](https://igor.io/2013/02/07/composer-stability-flags.html) - 一篇关于Composer稳定性标志的文章 892 | * [Composer Versioning](https://igor.io/2013/01/07/composer-versioning.html) - 一篇关于Composer版本的文章 893 | * [Create Your Own PHP Framework](http://fabien.potencier.org/create-your-own-framework-on-top-of-the-symfony2-components-part-1.html) - 一部Fabien Potencier的关于如何创建你自己的PHP框架的系列文章 894 | * [Don't Worry About BREACH](https://blog.ircmaxell.com/2013/08/dont-worry-about-breach.html) - 一篇关于BREACH攻击和CSRF令牌的文章 895 | * [On PHP 5.3, Lambda Functions and Closures](http://fabien.potencier.org/on-php-5-3-lambda-functions-and-closures.html) - 一篇关于lambda函数和闭包的文章 896 | * [PHP Is Much Better Than You Think](http://fabien.potencier.org/php-is-much-better-than-you-think.html) - 一篇关于PHP语言和生态圈的文章 897 | * [PHP Package Checklist](http://phppackagechecklist.com/) - 一个成功PHP包开发的清单 898 | * [PHP Sucks! But I Like It!](https://blog.ircmaxell.com/2012/04/php-sucks-but-i-like-it.html) - 一篇关于PHP利弊的文章 899 | * [Preventing CSRF Attacks](https://blog.ircmaxell.com/2013/02/preventing-csrf-attacks.html) - 一篇阻止CSRF攻击的文章 900 | * [Seven Ways to Screw Up BCrypt](https://blog.ircmaxell.com/2012/12/seven-ways-to-screw-up-bcrypt.html) - 一篇关于纠正BCrypt实现的文章 901 | * [The 2018 Guide to Building Secure PHP Software](https://paragonie.com/blog/2017/12/2018-guide-building-secure-php-software) - 一份建立安全PHP软件的指南 902 | * [Use Env](https://seancoates.com/blogs/use-env/) - 一篇关于使用unix环境帮助的文章 903 | 904 | ## PHP内核阅读 PHP Internals Reading 905 | *阅读PHP内核或性能相关的资料* 906 | 907 | * [Disproving the Single Quotes Myth](http://nikic.github.io/2012/01/09/Disproving-the-Single-Quotes-Performance-Myth.html) - 一篇关于单,双引号字符串性能的文章 908 | * [How Big Are PHP Arrays (And Values) Really?](http://nikic.github.io/2011/12/12/How-big-are-PHP-arrays-really-Hint-BIG.html) - 一篇关于数组原理的文章 909 | * [How Foreach Works](https://stackoverflow.com/questions/10057671/how-does-php-foreach-actually-work/14854568#14854568) - StackOverflow关于foreach回答的详情 910 | * [How Long is a Piece of String](http://blog.golemon.com/2006/06/how-long-is-piece-of-string.html) - 一篇关于字符串原理的文章 911 | * [PHP Evaluation Order](https://gist.github.com/nikic/6699370) - 一篇关于PHP评估顺序的文章 912 | * [PHP Internals Book](http://www.phpinternalsbook.com) - 一本由三名核心开发编写的关于PHP内核的在线书 913 | * [PHP RFCs](https://wiki.php.net/rfc) - PHP RFCs主页(请求注解) 914 | * [Print vs Echo, Which One is Faster?](http://fabien.potencier.org/print-vs-echo-which-one-is-faster.html) - 一篇关于打印和echo性能的文章 915 | * [The PHP Ternary Operator. Fast or Not?](http://fabien.potencier.org/the-php-ternary-operator-fast-or-not.html) - 一篇关于三元操作性能的文章 916 | * [Understanding OpCodes](http://blog.golemon.com/2008/01/understanding-opcodes.html) - 一篇关于opcodes的文章 917 | * [When Does Foreach Copy?](http://nikic.github.io/2011/11/11/PHP-Internals-When-does-foreach-copy.html) - 一篇关于foreach原理的文章 918 | * [Why Objects (Usually) Use Less Memory Than Arrays](https://gist.github.com/nikic/5015323) - 一篇关于对象和数组原理的文章 919 | * [You're Being Lied To](http://blog.golemon.com/2007/01/youre-being-lied-to.html) - 一篇关于内核ZVALs的文章 920 | 921 | ## PHP杂志 PHP Magazines 922 | *有趣的PHP相关的杂志* 923 | 924 | * [php[architect]](https://www.phparch.com/magazine/) - 一个致力于PHP的月更的杂志 925 | --------------------------------------------------------------------------------