├── .travis.yml ├── LICENSE.md ├── .github └── workflows │ └── awesomebot.yml ├── CONTRIBUTING.md ├── COLLABORATING.md ├── CODE-OF-CONDUCT.md └── README.md /.travis.yml: -------------------------------------------------------------------------------- 1 | language: ruby 2 | rvm: 3 | - 2.2 4 | before_script: 5 | - gem install awesome_bot 6 | script: 7 | - awesome_bot README.md --white-list igor.io,symfony,toranproxy.com,vagrantup.com,3v4l.org,voicesoftheelephpant.com,drupal.org 8 | notifications: 9 | email: false 10 | -------------------------------------------------------------------------------- /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 | 15 | -------------------------------------------------------------------------------- /.github/workflows/awesomebot.yml: -------------------------------------------------------------------------------- 1 | name: Awesome Bot 2 | on: 3 | push: 4 | branches: 5 | - master 6 | jobs: 7 | build: 8 | runs-on: ubuntu-latest 9 | steps: 10 | - uses: actions/checkout@v1 11 | - name: Set up Ruby 2.6 12 | uses: actions/setup-ruby@v1 13 | with: 14 | ruby-version: 2.6.x 15 | - name: Install Awesome Bot 16 | run: gem install awesome_bot 17 | - name: Run Awesome Bot 18 | run: awesome_bot README.md --white-list igor.io,symfony,toranproxy.com,vagrantup.com,3v4l.org,voicesoftheelephpant.com,drupal.org 19 | - uses: actions/upload-artifact@v1 20 | if: failure() 21 | with: 22 | name: ab-results 23 | path: ab-results-README.md-filtered.json 24 | -------------------------------------------------------------------------------- /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 | 1. Be widely recommended 5 | 2. Well known or discussed within the PHP community 6 | 3. Be unique in its approach or function 7 | 4. 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 7.0+, Composer-installable, PSR compliant, semantically versioned, unit tested, actively maintained and well documented in English. 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 | * Your entry has been added alphabetically within the category. 26 | 27 | Thank you for your suggestions! 28 | -------------------------------------------------------------------------------- /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! -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Awesome PHP ![](https://github.com/ziadoz/awesome-php/workflows/Awesome%20Bot/badge.svg) 2 | 3 | A curated list of amazingly awesome PHP libraries, resources and shiny things. 4 | 5 | ## Contributing and Collaborating 6 | Please see [CONTRIBUTING](https://github.com/ziadoz/awesome-php/blob/master/CONTRIBUTING.md), [CODE-OF-CONDUCT](https://github.com/ziadoz/awesome-php/blob/master/CODE-OF-CONDUCT.md) and [COLLABORATING](https://github.com/ziadoz/awesome-php/blob/master/COLLABORATING.md) for details. 7 | 8 | ## Table of Contents 9 | - [Awesome PHP](#awesome-php) 10 | - [Composer Repositories](#composer-repositories) 11 | - [Dependency Management](#dependency-management) 12 | - [Dependency Management Extras](#dependency-management-extras) 13 | - [Frameworks](#frameworks) 14 | - [Framework Extras](#framework-extras) 15 | - [Content Management Systems](#content-management-systems-cms) 16 | - [Components](#components) 17 | - [Micro Frameworks](#micro-frameworks) 18 | - [Micro Framework Extras](#micro-framework-extras) 19 | - [Routers](#routers) 20 | - [Templating](#templating) 21 | - [Static Site Generators](#static-site-generators) 22 | - [HTTP](#http) 23 | - [Scraping](#scraping) 24 | - [Middlewares](#middlewares) 25 | - [URL](#url) 26 | - [Email](#email) 27 | - [Files](#files) 28 | - [Streams](#streams) 29 | - [Dependency Injection](#dependency-injection) 30 | - [Imagery](#imagery) 31 | - [Testing](#testing) 32 | - [Continuous Integration](#continuous-integration) 33 | - [Documentation](#documentation) 34 | - [Security](#security) 35 | - [Passwords](#passwords) 36 | - [Code Analysis](#code-analysis) 37 | - [Code Quality](#code-quality) 38 | - [Static Analysis](#static-analysis) 39 | - [Architectural](#architectural) 40 | - [Debugging and Profiling](#debugging-and-profiling) 41 | - [Build Tools](#build-tools) 42 | - [Task Runners](#task-runners) 43 | - [Navigation](#navigation) 44 | - [Asset Management](#asset-management) 45 | - [Geolocation](#geolocation) 46 | - [Date and Time](#date-and-time) 47 | - [Event](#event) 48 | - [Logging](#logging) 49 | - [E-commerce](#e-commerce) 50 | - [PDF](#pdf) 51 | - [Office](#office) 52 | - [Database](#database) 53 | - [Migrations](#migrations) 54 | - [NoSQL](#nosql) 55 | - [Queue](#queue) 56 | - [Search](#search) 57 | - [Command Line](#command-line) 58 | - [Authentication and Authorization](#authentication-and-authorization) 59 | - [Markup](#markup) 60 | - [Strings](#strings) 61 | - [Numbers](#numbers) 62 | - [Filtering and Validation](#filtering-and-validation) 63 | - [API](#api) 64 | - [Caching](#caching) 65 | - [Data Structure and Storage](#data-structure-and-storage) 66 | - [Notifications](#notifications) 67 | - [Deployment](#deployment) 68 | - [Internationalisation and Localisation](#internationalisation-and-localisation) 69 | - [Serverless](#serverless) 70 | - [Configuration](#configuration) 71 | - [Third Party APIs](#third-party-apis) 72 | - [Extensions](#extensions) 73 | - [Miscellaneous](#miscellaneous) 74 | - [Software](#software) 75 | - [PHP Installation](#php-installation) 76 | - [Development Environment](#development-environment) 77 | - [Virtual Machines](#virtual-machines) 78 | - [Text Editors and IDEs](#text-editors-and-ides) 79 | - [Web Applications](#web-applications) 80 | - [Infrastructure](#infrastructure) 81 | - [Resources](#resources) 82 | - [PHP Websites](#php-websites) 83 | - [Other Websites](#other-websites) 84 | - [PHP Books](#php-books) 85 | - [Other Books](#other-books) 86 | - [PHP Videos](#php-videos) 87 | - [PHP Podcasts](#php-podcasts) 88 | - [PHP Reading](#php-reading) 89 | - [PHP Internals Reading](#php-internals-reading) 90 | 91 | ### Composer Repositories 92 | *Composer Repositories.* 93 | 94 | * [Firegento](https://packages.firegento.com/) - Magento Module Composer Repository. 95 | * [Packagist](https://packagist.org/) - The PHP Package Repository. 96 | * [Private Packagist](https://packagist.com/) - Composer package archive as a service for PHP. 97 | * [WordPress Packagist](https://wpackagist.org/) - Manage your plugins with Composer. 98 | 99 | ### Dependency Management 100 | *Libraries for dependency and package management.* 101 | 102 | * [Composer Installers](https://github.com/composer/installers) - A multi framework Composer library installer. 103 | * [Composer](https://getcomposer.org/) - A package and dependency manager. 104 | * [Melody](https://melody.sensiolabs.org/) - A tool to build one file Composer scripts. 105 | * [Pickle](https://github.com/FriendsOfPHP/pickle) - A PHP extension installer. 106 | 107 | ### Dependency Management Extras 108 | *Extras related to dependency management.* 109 | 110 | * [Composed](https://github.com/joshdifabio/composed) - A library to parse your project's Composer environment at runtime. 111 | * [Composer Merge Plugin](https://github.com/wikimedia/composer-merge-plugin) - A composer plugin to merge several composer.json files. 112 | * [Prestissimo](https://github.com/hirak/prestissimo) - A composer plugin which enables parallel install process. 113 | * [Repman](https://repman.io) - A private PHP package repository manager and Packagist proxy. 114 | * [Satis](https://github.com/composer/satis) - A static Composer repository generator. 115 | * [tooly](https://github.com/tommy-muehle/tooly-composer-script) - A library to manage PHAR files in project using Composer. 116 | * [Toran Proxy](https://toranproxy.com) - A static Composer repository and proxy. 117 | 118 | ### Frameworks 119 | *Web development frameworks.* 120 | 121 | * [CakePHP](https://cakephp.org/) - A rapid application development framework. 122 | * [Laminas](https://getlaminas.org/) - A framework comprised of individual components (previously Zend Framework). 123 | * [Laravel](https://laravel.com/) - A web application framework with expressive, elegant syntax. 124 | * [Nette](https://nette.org) - A web framework comprised of mature components. 125 | * [Phalcon](https://phalcon.io/en-us) - A framework implemented as a C extension. 126 | * [Spiral](https://spiral.dev/) - A high performance PHP/Go framework. 127 | * [Symfony](https://symfony.com/) - A set of reuseable components and a web framework. 128 | * [Yii2](https://github.com/yiisoft/yii2/) - A fast, secure, and efficient web framework. 129 | 130 | ### Framework Extras 131 | *Extras related to web development frameworks.* 132 | 133 | * [CakePHP CRUD](https://github.com/friendsofcake/crud) - A Rapid Application Development (RAD) plugin for CakePHP. 134 | * [Knp RAD Components](https://rad.knplabs.com/) - A set of Rapid Application Development (RAD) components for Symfony. 135 | * [LaravelS](https://github.com/hhxsv5/laravel-s) - Glue for using Swoole in Laravel or Lumen. 136 | * [Symfony CMF](https://github.com/symfony-cmf/symfony-cmf) - A Content Management Framework to create custom CMS. 137 | 138 | ### Content Management Systems (CMS) 139 | *Tools for managing digital content.* 140 | * [Backdrop](https://backdropcms.org) - A CMS targeting small-to-medium sized business and non-profits (a fork of Drupal). 141 | * [Concrete5](https://www.concrete5.org/) - A CMS targeting users with a minimum of technical skills. 142 | * [Drupal](https://www.drupal.org) - An enterprise level CMS. 143 | * [Grav](https://github.com/getgrav/grav) - A modern flat-file CMS. 144 | * [Joomla](https://www.joomla.org/) - Another leading CMS. 145 | * [Kirby](https://getkirby.com/) - A flat-file CMS that adapts to any project. 146 | * [Magento](https://magento.com/) - The most popular ecommerce platform. 147 | * [Pico CMS](http://picocms.org/) - A stupidly simple, blazing fast, flat file CMS. 148 | * [WordPress](https://wordpress.org/) - A blogging platform and CMS. 149 | * [Moodle](https://moodle.org/) - An open-source learning platform. 150 | 151 | ### Components 152 | *Standalone components from web development frameworks and development groups.* 153 | 154 | * [Aura](http://auraphp.com/) - Independent components, fully decoupled from each other and from any framework. 155 | * [CakePHP Plugins](https://plugins.cakephp.org/) - A directory of CakePHP plugins. 156 | * [Hoa Project](https://hoa-project.net/En/) - Another package of PHP components. 157 | * [Laravel Components](https://github.com/illuminate) - The Laravel Framework components. 158 | * [League of Extraordinary Packages](https://thephpleague.com/) - A PHP package development group. 159 | * [Spatie Open Source](https://spatie.be/open-source) - A collection of open source PHP and Laravel packages. 160 | * [Symfony Components](https://symfony.com/doc/master/components/index.html) - The components that make Symfony. 161 | * [Laminas Components](https://docs.laminas.dev/components/) - The components that make the Laminas Framework. 162 | 163 | ### Micro Frameworks 164 | *Micro frameworks and routers.* 165 | 166 | * [Laravel-Zero](https://laravel-zero.com) - A micro-framework for console applications. 167 | * [Lumen](https://lumen.laravel.com) - A micro-framework by Laravel. 168 | * [Mezzio](https://getexpressive.org/) - A micro-framework by Laminas. 169 | * [Radar](https://github.com/radarphp/Radar.Adr) - An Action-Domain-Responder implementation for PHP. 170 | * [Silly](https://github.com/mnapoli/silly) - A micro-framework for CLI applications. 171 | * [Slim](https://www.slimframework.com/) - Another simple micro framework. 172 | 173 | ### Micro Framework Extras 174 | *Extras related to micro frameworks and routers.* 175 | 176 | * [Slim Skeleton](https://github.com/slimphp/Slim-Skeleton) - A skeleton for Slim. 177 | * [Slim Twig View](https://github.com/slimphp/Slim-Views) - Integrate Twig into Slim. 178 | * [Slim PHP View](https://github.com/slimphp/PHP-View) - A simple PHP renderer for Slim. 179 | 180 | ### Routers 181 | *Libraries for handling application routing.* 182 | 183 | * [Aura.Router](https://github.com/auraphp/Aura.Router) - A full-featured routing library. 184 | * [Fast Route](https://github.com/nikic/FastRoute) - A fast routing library. 185 | * [Klein](https://github.com/klein/klein.php) - A flexible router. 186 | * [Pux](https://github.com/c9s/Pux) - Another fast routing library. 187 | * [Route](https://github.com/thephpleague/route) - A routing library built on top of Fast Route. 188 | 189 | ### Templating 190 | *Libraries and tools for templating and lexing.* 191 | 192 | * [MtHaml](https://github.com/arnaud-lb/MtHaml) - A PHP implementation of the HAML template language. 193 | * [Mustache](https://github.com/bobthecow/mustache.php) - A PHP implementation of the Mustache template language. 194 | * [PHPTAL](https://phptal.org/) - A PHP implementation of the [TAL](https://en.wikipedia.org/wiki/Template_Attribute_Language) templating language. 195 | * [Plates](http://platesphp.com/) - A native PHP templating library. 196 | * [Smarty](https://www.smarty.net/) - A template engine to complement PHP. 197 | * [Twig](https://twig.symfony.com/) - A comprehensive templating language. 198 | 199 | ### Static Site Generators 200 | *Tools for pre-processing content to generate web pages.* 201 | 202 | * [Couscous](http://couscous.io) - Couscous turns Markdown documentation into beautiful websites. It's GitHub Pages on steroids. 203 | * [Sculpin](https://sculpin.io) - A tool that converts Markdown and Twig into static HTML. 204 | * [Spress](http://spress.yosymfony.com) - An extensible tool that converts Markdown and Twig into HTML. 205 | 206 | ### HTTP 207 | *Libraries for working with HTTP.* 208 | 209 | * [Buzz](https://github.com/kriswallsmith/Buzz) - Another HTTP client. 210 | * [Guzzle]( https://github.com/guzzle/guzzle) - A comprehensive HTTP client. 211 | * [HTTPlug](http://httplug.io) - An HTTP client abstraction without binding to a specific implementation. 212 | * [Nyholm PSR-7](https://github.com/Nyholm/psr7) - A super lightweight PSR-7 implementation. Very strict and very fast. 213 | * [PHP VCR](https://php-vcr.github.io/) - A library for recording and replaying HTTP requests. 214 | * [Requests](https://github.com/rmccue/Requests) - A simple HTTP library. 215 | * [Retrofit](https://github.com/tebru/retrofit-php) - A library to ease creation of REST API clients. 216 | * [Symfony HTTP Client](https://github.com/symfony/http-client) - A component to fetch HTTP resources synchronously or asynchronously. 217 | * [Laminas Diactoros](https://github.com/laminas/laminas-diactoros) - PSR-7 HTTP Message implementation. 218 | 219 | ### Scraping 220 | *Libraries for scraping websites.* 221 | 222 | * [DiDOM](https://github.com/Imangazaliev/DiDOM) - A super fast HTML scrapper and parser. 223 | * [Embed](https://github.com/oscarotero/Embed) - An information extractor from any web service or page. 224 | * [Goutte](https://github.com/FriendsOfPHP/Goutte) - A simple web scraper. 225 | * [Symfony Panther](https://github.com/symfony/panther) - A browser testing and web crawling library for PHP and Symfony. 226 | * [PHP Spider](https://github.com/mvdbos/php-spider) - A configurable and extensible PHP web spider. 227 | 228 | ### Middlewares 229 | *Libraries for building application using middlewares.* 230 | 231 | * [PSR-7 Middlewares](https://github.com/oscarotero/psr7-middlewares) - Inspiring collection of handy middlewares. 232 | * [Relay](https://github.com/relayphp/Relay.Relay) - A PHP 5.5 PSR-7 middleware dispatcher. 233 | * [Stack](https://github.com/stackphp) - A library of stackable middleware for Symfony. 234 | * [Laminas Stratigility](https://github.com/laminas/laminas-stratigility) - Middleware for PHP built on top of PSR-7. 235 | 236 | ### URL 237 | *Libraries for parsing URLs.* 238 | 239 | * [PHP Domain Parser](https://github.com/jeremykendall/php-domain-parser) - A domain suffix parser library. 240 | * [Purl](https://github.com/jwage/purl) - A URL manipulation library. 241 | * [sabre/uri](https://github.com/sabre-io/uri) - A functional URI manipulation library. 242 | * [Uri](https://github.com/thephpleague/uri) - Another URL manipulation library. 243 | 244 | ### Email 245 | *Libraries for sending and parsing email.* 246 | 247 | * [CssToInlineStyles](https://github.com/tijsverkoyen/CssToInlineStyles) - A library to inline CSS in email templates. 248 | * [Email Reply Parser](https://github.com/willdurand/EmailReplyParser) - An email reply parser library. 249 | * [Email Validator](https://github.com/nojacko/email-validator) - A small email address validation library. 250 | * [Fetch](https://github.com/tedious/Fetch) - An IMAP library. 251 | * [Mautic](https://github.com/mautic/mautic) - Email marketing automation 252 | * [PHPMailer](https://github.com/PHPMailer/PHPMailer) - Another mailer solution. 253 | * [PHP IMAP](https://github.com/barbushin/php-imap) - A library to access mailboxes via POP3, IMAP and NNTP. 254 | * [Stampie](https://github.com/Stampie/Stampie) - A library for email services such as [SendGrid](https://sendgrid.com/), [PostMark](https://postmarkapp.com), [MailGun](https://www.mailgun.com/) and [Mandrill](https://mailchimp.com/features/transactional-email/). 255 | * [SwiftMailer](https://swiftmailer.symfony.com) - A mailer solution. 256 | * [Symfony Mailer](https://github.com/symfony/mailer) - A powerful library for creating and sending emails. 257 | 258 | ### Files 259 | *Libraries for file manipulation and MIME type detection.* 260 | 261 | * [CSV](https://github.com/thephpleague/csv) - A CSV data manipulation library. 262 | * [Flysystem](https://github.com/thephpleague/Flysystem) - Abstraction for local and remote filesystems. 263 | * [Gaufrette](https://github.com/KnpLabs/Gaufrette) - A filesystem abstraction layer. 264 | * [Hoa Mime](https://github.com/hoaproject/Mime) - Another MIME detection library. 265 | * [PHP FFmpeg](https://github.com/PHP-FFmpeg/PHP-FFmpeg/) - A wrapper for the [FFmpeg](https://www.ffmpeg.org/) video library. 266 | * [UnifiedArchive](https://github.com/wapmorgan/UnifiedArchive) - A unified reader and writer of compressed archives. 267 | 268 | ### Streams 269 | *Libraries for working with streams.* 270 | 271 | * [ByteStream](https://amphp.org/byte-stream/) - An asynchronous stream abstraction. 272 | * [Streamer](https://github.com/fzaninotto/Streamer) - A simple object-orientated stream wrapper library. 273 | 274 | ### Dependency Injection 275 | *Libraries that implement the dependency injection design pattern.* 276 | 277 | * [Aura.Di](https://github.com/auraphp/Aura.Di) - A serializable dependency injection container with constructor and setter injection, interface and trait awareness, configuration inheritance, and much more. 278 | * [Acclimate](https://github.com/AcclimateContainer/acclimate-container) - A common interface to dependency injection containers and service locators. 279 | * [Auryn](https://github.com/rdlowrey/Auryn) - A recursive dependency injector. 280 | * [Container](https://github.com/thephpleague/container) - Another flexible dependency injection container. 281 | * [Disco](https://github.com/bitExpert/disco) - A PSR-11 compatible, annotation-based dependency injection container. 282 | * [PHP-DI](http://php-di.org/) - A dependency injection container that supports autowiring. 283 | * [Pimple](https://pimple.symfony.com/) - A tiny dependency injection container. 284 | * [Symfony DI](https://github.com/symfony/dependency-injection) - A dependency injection container component. 285 | 286 | ### Imagery 287 | *Libraries for manipulating images.* 288 | 289 | * [Color Extractor](https://github.com/thephpleague/color-extractor) - A library for extracting colours from images. 290 | * [Glide](https://github.com/thephpleague/glide) - An on-demand image manipulation library. 291 | * [Image Hash](https://github.com/jenssegers/imagehash) - A library for generating perceptual image hashes. 292 | * [Image Optimizer](https://github.com/psliwa/image-optimizer) - A library for optimizing images. 293 | * [Imagine](https://imagine.readthedocs.io/en/latest/index.html) - An image manipulation library. 294 | * [Intervention Image](https://github.com/Intervention/image) - Another image manipulation library. 295 | * [PHP Image Workshop](https://github.com/Sybio/ImageWorkshop) - Another image manipulation library. 296 | 297 | ### Testing 298 | *Libraries for testing codebases and generating test data.* 299 | 300 | * [Alice](https://github.com/nelmio/alice) - An expressive fixture generation library. 301 | * [AspectMock](https://github.com/Codeception/AspectMock) - A mocking framework for PHPUnit/Codeception. 302 | * [Atoum](https://github.com/atoum/atoum) - A simple testing library. 303 | * [Behat](https://docs.behat.org/en/latest/) - A behaviour driven development (BDD) testing framework. 304 | * [Codeception](https://github.com/Codeception/Codeception) - A full stack testing framework. 305 | * [Faker](https://github.com/fzaninotto/Faker) - A fake data generator library. 306 | * [HTTP Mock](https://github.com/InterNations/http-mock) - A library for mocking HTTP requests in unit tests. 307 | * [Infection](https://github.com/infection/infection) - An AST-based PHP Mutation testing framework. 308 | * [Kahlan](https://github.com/kahlan/kahlan) - Full stack Unit/BDD testing framework with built-in stub, mock and code-coverage support. 309 | * [Mink](http://mink.behat.org/en/latest/) - Web acceptance testing. 310 | * [Mockery](https://github.com/mockery/mockery) - A mock object library for testing. 311 | * [ParaTest](https://github.com/paratestphp/paratest) - A parallel testing library for PHPUnit. 312 | * [Peridot](https://github.com/peridot-php/peridot) - An event driven test framework. 313 | * [Phake](https://github.com/mlively/Phake) - Another mock object library for testing. 314 | * [Pho](https://github.com/danielstjules/pho) - Another behaviour driven development testing framework. 315 | * [PHP-Mock](https://github.com/php-mock/php-mock) - A mock library for built-in PHP functions (e.g. time()). 316 | * [PHPSpec](https://github.com/phpspec/phpspec) - A design by specification unit testing library. 317 | * [PHPT](https://qa.php.net/write-test.php) - A test tool used by PHP itself. 318 | * [PHPUnit](https://github.com/sebastianbergmann/phpunit) - A unit testing framework. 319 | * [Prophecy](https://github.com/phpspec/prophecy) - A highly opinionated mocking framework. 320 | * [VFS Stream](https://github.com/bovigo/vfsStream) - A virtual filesystem stream wrapper for testing. 321 | 322 | ### Continuous Integration 323 | *Libraries and applications for continuous integration.* 324 | 325 | * [CircleCI](https://circleci.com) - A continuous integration platform. 326 | * [GitlabCi](https://about.gitlab.com/stages-devops-lifecycle/continuous-integration/) - Let GitLab CI test, build, deploy your code. TravisCi like. 327 | * [Jenkins](https://www.jenkins.io/) - A continuous integration platform with [PHP support](https://www.jenkins.io/solutions/php/). 328 | * [JoliCi](https://github.com/jolicode/JoliCi) - A continuous integration client written in PHP and powered by Docker. 329 | * [PHPCI](https://github.com/dancryer/phpci) - An open source continuous integration platform for PHP. 330 | * [SemaphoreCI](https://semaphoreci.com/) - A continuous integration platform for open source and private projects. 331 | * [Shippable](https://www.shippable.com/) - A Docker based continious integration platform for open source and private projects. 332 | * [Travis CI](https://travis-ci.org/) - A continuous integration platform. 333 | * [Setup PHP](https://github.com/shivammathur/setup-php) - A GitHub Action for PHP. 334 | 335 | ### Documentation 336 | *Libraries for generating project documentation.* 337 | 338 | * [APIGen](https://github.com/apigen/apigen) - Another API documentation generator. 339 | * [daux.io](https://github.com/dauxio/daux.io) - A documentation generator which uses Markdown files. 340 | * [PHP Documentor 2](https://github.com/phpDocumentor/phpDocumentor) - A documentation generator. 341 | * [phpDox](http://phpdox.de/) - A documentation generator for PHP projects (that is not limited to API documentation). 342 | 343 | ### Security 344 | *Libraries for generating secure random numbers, encrypting data and scanning and testing for vulnerabilities.* 345 | 346 | * [Halite](https://paragonie.com/project/halite) - A simple library for encryption using [libsodium](https://github.com/jedisct1/libsodium). 347 | * [HTML Purifier](https://github.com/ezyang/htmlpurifier) - A standards compliant HTML filter. 348 | * [IniScan](https://github.com/psecio/iniscan) - A tool that scans PHP INI files for security. 349 | * [Optimus](https://github.com/jenssegers/optimus) - Id obfuscation based on Knuth's multiplicative hashing method. 350 | * [PHPGGC](https://github.com/ambionics/phpggc) - A library of PHP unserializeable payloads along with a tool to generate them. 351 | * [PHP Encryption](https://github.com/defuse/php-encryption) - Secure PHP Encryption Library. 352 | * [PHP SSH](https://github.com/Herzult/php-ssh) - An experimental object orientated SSH wrapper library. 353 | * [PHPSecLib](http://phpseclib.sourceforge.net/) - A pure PHP secure communications library. 354 | * [random_compat](https://github.com/paragonie/random_compat) - PHP 5.x support for `random_bytes()` and `random_int()` 355 | * [RandomLib](https://github.com/ircmaxell/RandomLib) - A library for generating random numbers and strings. 356 | * [Symfony Security Monitoring](https://security.symfony.com/) - A web tool to check your Composer dependencies for security advisories, previously known as "SensioLabs Security Check". 357 | * [SQLMap](https://github.com/sqlmapproject/sqlmap) - An automatic SQL injection and database takeover tool. 358 | * [TCrypto](https://github.com/timoh6/TCrypto) - A simple encrypted key-value storage library. 359 | * [VAddy](https://vaddy.net/) - A continuous security testing platform for web applications. 360 | * [Zap](https://owasp.org/www-project-zap/) - An integrated penetration testing tool for web applications. 361 | 362 | ### Passwords 363 | *Libraries and tools for working with and storing passwords.* 364 | 365 | * [GenPhrase](https://github.com/timoh6/GenPhrase) - A library for generating secure random passphrases. 366 | * [Password Compat](https://github.com/ircmaxell/password_compat) - A compatibility library for the new PHP 5.5 password functions. 367 | * [Password Policy](https://github.com/ircmaxell/password-policy) - A password policy library for PHP and JavaScript. 368 | * [Password Validator](https://github.com/jeremykendall/password-validator) - A library for validating and upgrading password hashes. 369 | * [Password-Generator](https://github.com/hackzilla/password-generator) - PHP library to generate random passwords. 370 | * [PHP Password Lib](https://github.com/ircmaxell/PHP-PasswordLib) - A library for generating and validating passwords. 371 | * [phpass](https://www.openwall.com/phpass/) - A portable password hashing framework. 372 | * [Zxcvbn PHP](https://github.com/bjeavons/zxcvbn-php) - A realistic PHP password strength estimate library based on Zxcvbn JS. 373 | 374 | ### Code Analysis 375 | *Libraries and tools for analysing, parsing and manipulating codebases.* 376 | 377 | * [Better Reflection](https://github.com/Roave/BetterReflection) - AST-based reflection library that allows analysis and manipulation of code 378 | * [Code Climate](https://codeclimate.com) - An automated code review. 379 | * [PHP Parser](https://github.com/nikic/PHP-Parser) - A PHP parser written in PHP. 380 | * [PHP Semantic Versioning Checker](https://github.com/tomzx/php-semver-checker) - A command line utility that compares two source sets and determines the appropriate semantic versioning to apply. 381 | * [Phpactor](https://github.com/phpactor/phpactor) - PHP completion, refactoring and introspection tool. 382 | * [PHPLOC](https://github.com/sebastianbergmann/phploc) - A tool for quickly measuring the size of a PHP project. 383 | * [PHPQA](https://github.com/EdgedesignCZ/phpqa) - A tool for running QA tools (phploc, phpcpd, phpcs, pdepend, phpmd, phpmetrics). 384 | * [Qafoo Quality Analyzer](https://github.com/Qafoo/QualityAnalyzer) - A tool to visualize metrics and source code. 385 | * [Rector](https://github.com/rectorphp/rector) - A tool to upgrade and refactor code. 386 | * [Scrutinizer](https://scrutinizer-ci.com/) - A web tool to [scrutinise PHP code](https://github.com/scrutinizer-ci/php-analyzer). 387 | * [UBench](https://github.com/devster/ubench) - A simple micro benchmark library. 388 | 389 | ### Code Quality 390 | *Libraries for managing code quality, formatting and linting.* 391 | 392 | * [PHP CodeSniffer](https://github.com/squizlabs/PHP_CodeSniffer) - A library that detects PHP, CSS and JS coding standard violations. 393 | * [PHP CS Fixer](https://github.com/FriendsOfPHP/PHP-CS-Fixer) - A coding standards fixer library. 394 | * [PHP Mess Detector](https://github.com/phpmd/phpmd) - A library that scans code for bugs, sub-optimal code, unused parameters and more. 395 | * [PHPCheckstyle](https://github.com/PHPCheckstyle/phpcheckstyle) - A tool to help adhere to certain coding conventions. 396 | * [PHPCPD](https://github.com/sebastianbergmann/phpcpd) - A library that detects copied and pasted code. 397 | 398 | ### Static Analysis 399 | *Libraries for performing static analysis of PHP code.* 400 | 401 | * [Exakat](https://github.com/exakat/exakat) - A static analysis engine for PHP. 402 | * [Deptrac](https://github.com/sensiolabs-de/deptrac) - A static code analysis tool that helps to enforce rules for dependencies between software layers. 403 | * [Mondrian](https://github.com/Trismegiste/Mondrian) - A code analysis tool using Graph Theory. 404 | * [phan](https://github.com/phan/phan) - A static analyzer based on PHP 7+ and the php-ast extension. 405 | * [PHP Architecture Tester](https://github.com/carlosas/phpat) - Easy to use architecture testing tool for PHP. 406 | * [PHPCompatibility](https://github.com/PHPCompatibility/PHPCompatibility) - A PHP compatibility checker for PHP CodeSniffer. 407 | * [PhpDependencyAnalysis](https://github.com/mamuz/PhpDependencyAnalysis) - A tool to create customisable dependency graphs. 408 | * [PHP Metrics](https://github.com/phpmetrics/PhpMetrics) - A static metric library. 409 | * [PHP Migration](https://github.com/monque/PHP-Migration) - A static analyzer for PHP version migration. 410 | * [PHPStan](https://github.com/phpstan/phpstan) - A PHP Static Analysis Tool. 411 | * [Psalm](https://github.com/vimeo/psalm) - A static analysis tool for finding errors in PHP applications. 412 | 413 | ### Architectural 414 | *Libraries related to design patterns, programming approaches and ways to organize code.* 415 | 416 | * [Design Patterns PHP](https://github.com/domnikl/DesignPatternsPHP) - A repository of software patterns implemented in PHP. 417 | * [Finite](https://yohan.giarel.li/Finite/) - A simple PHP finite state machine. 418 | * [Functional PHP](https://github.com/lstrojny/functional-php) - A functional programming library. 419 | * [Iter](https://github.com/nikic/iter) - A library that provides iteration primitives using generators. 420 | * [Patchwork](http://patchwork2.org/) - A library for redefining userland functions. 421 | * [Pipeline](https://github.com/thephpleague/pipeline) - A pipeline pattern implementation. 422 | * [Porter](https://github.com/ScriptFUSION/Porter) - Data import abstraction library for consuming Web APIs and other data sources. 423 | * [Ruler](https://github.com/bobthecow/Ruler) - A simple stateless production rules engine. 424 | * [RulerZ](https://github.com/K-Phoen/rulerz) - A powerful rule engine and implementation of the Specification pattern. 425 | 426 | ### Debugging and Profiling 427 | *Libraries and tools for debugging errors and profiling code.* 428 | 429 | * [APM](https://pecl.php.net/package/APM) - Monitoring extension collecting errors and statistics into SQLite/MySQL/StatsD. 430 | * [Barbushin PHP Console](https://github.com/barbushin/php-console) - Another web debugging console using Google Chrome. 431 | * [Blackfire.io](https://blackfire.io) - A low-overhead code profiler. 432 | * [Kint](https://github.com/kint-php/kint) - A debugging and profiling tool. 433 | * [PCOV](https://github.com/krakjoe/pcov) - A self contained code coverage compatible driver. 434 | * [PHP Console](https://github.com/Seldaek/php-console) - A web debugging console. 435 | * [PHP Debug Bar](http://phpdebugbar.com/) - A debugging toolbar. 436 | * [PHPBench](https://github.com/phpbench/phpbench) - A benchmarking Framework. 437 | * [PHPSpy](https://github.com/adsr/phpspy) - A low-overhead sampling profiler. 438 | * [Symfony VarDumper](https://github.com/symfony/var-dumper) - A variable dumper component. 439 | * [Tideways.io](https://tideways.com/) - Monitoring and profiling tool. 440 | * [Tracy](https://github.com/nette/tracy) - A simple error detection, logging and time measuring library. 441 | * [Whoops](https://github.com/filp/whoops) - A pretty error handling library. 442 | * [xDebug](https://github.com/xdebug/xdebug) - A debug and profile tool for PHP. 443 | * [XHProf](https://github.com/phacility/xhprof) - A profiling tool originally developed by Facebook. 444 | * [Z-Ray](https://www.zend.com/products/z-ray) - A debug and profile tool for Zend Server. 445 | 446 | ### Build Tools 447 | *Project build and automation tools.* 448 | 449 | * [Box](https://github.com/humbug/box) - A utility to build PHAR files. 450 | * [Construct](https://github.com/jonathantorres/construct) - A PHP project/micro-package generator. 451 | * [Phing](https://www.phing.info/) - A PHP project build system inspired by Apache Ant. 452 | 453 | ### Task Runners 454 | *Libraries for automating and running tasks.* 455 | 456 | * [Bldr](https://bldr.io/) - A PHP Task runner built on Symfony components. 457 | * [Jobby](https://github.com/jobbyphp/jobby) - A PHP cron job manager without modifying crontab. 458 | * [Robo](https://github.com/consolidation/Robo) - A PHP Task runner with object-orientated configurations. 459 | * [Task](https://taskphp.github.io/) - A pure PHP task runner inspired by Grunt and Gulp. 460 | 461 | ### Navigation 462 | *Tools for building navigation structures.* 463 | 464 | * [KnpMenu](https://github.com/KnpLabs/KnpMenu) - A menu library. 465 | * [Menu](https://github.com/spatie/menu) - A flexible menu library with a fluent interface. 466 | 467 | ### Asset Management 468 | *Tools for managing, compressing and minifying website assets.* 469 | 470 | * [JShrink](https://github.com/tedious/JShrink) - A JavaScript minifier library. 471 | * [Laravel Mix](https://github.com/JeffreyWay/laravel-mix) - An elegant wrapper around Webpack for the 80% use case. 472 | * [Symfony Asset](https://github.com/symfony/asset) - Manages URL generation and versioning of web assets. 473 | * [Symfony Encore](https://github.com/symfony/webpack-encore) - A simple but powerful API for processing and compiling assets built around Webpack. 474 | 475 | ### Geolocation 476 | *Libraries for geocoding addresses and working with latitudes and longitudes.* 477 | 478 | * [GeoCoder](https://geocoder-php.org/) - A geocoding library. 479 | * [GeoJSON](https://github.com/jmikola/geojson) - A GeoJSON implementation. 480 | * [GeoTools](https://github.com/thephpleague/geotools) - A library of geo-related tools. 481 | * [PHPGeo](https://github.com/mjaschen/phpgeo) - A simple geo library. 482 | 483 | ### Date and Time 484 | *Libraries for working with dates and times.* 485 | 486 | * [CalendR](https://yohan.giarel.li/CalendR/) - A calendar management library. 487 | * [Carbon](https://github.com/briannesbitt/Carbon) - A simple DateTime API extension. 488 | * [Chronos](https://github.com/cakephp/chronos) - A DateTime API extension supporting both mutable and immutable date/time. 489 | * [Moment.php](https://github.com/fightbulc/moment.php) - Moment.js inspired PHP DateTime handler with i18n support. 490 | * [Yasumi](https://github.com/azuyalabs/yasumi) - An library to help you calculate the dates and names of holidays. 491 | 492 | ### Event 493 | *Libraries that are event-driven or implement non-blocking event loops.* 494 | * [Amp](https://github.com/amphp/amp) - An event driven non-blocking I/O library. 495 | * [Broadway](https://github.com/broadway/broadway) - An event source and CQRS library. 496 | * [CakePHP Event](https://github.com/cakephp/event) - An event dispatcher library. 497 | * [Elephant.io](https://github.com/Wisembly/Elephant.io) - Yet another web socket library. 498 | * [Evenement](https://github.com/igorw/evenement) - An event dispatcher library. 499 | * [Event](https://github.com/thephpleague/event) - An event library with a focus on domain events. 500 | * [Hoa EventSource](https://github.com/hoaproject/Eventsource) - An event source library. 501 | * [Hoa WebSocket](https://github.com/hoaproject/Websocket) - Another web socket library. 502 | * [Prooph Event Store](https://github.com/prooph/event-store) - An event source component to persist event messages 503 | * [PHP Defer](https://github.com/php-defer/php-defer) - Golang's defer statement for PHP. 504 | * [Ratchet](https://github.com/ratchetphp/Ratchet) - A web socket library. 505 | * [ReactPHP](https://github.com/reactphp/reactphp) - An event driven non-blocking I/O library. 506 | * [RxPHP](https://github.com/ReactiveX/RxPHP) - A reactive extension library. 507 | * [Swoole](https://github.com/swoole/swoole-src) - An event-driven asynchronous and concurrent networking communication framework with high performance for PHP written in C. 508 | * [Workerman](https://github.com/walkor/Workerman) - An event driven non-blocking I/O library. 509 | 510 | ### Logging 511 | *Libraries for generating and working with log files.* 512 | 513 | * [Monolog](https://github.com/Seldaek/monolog) - A comprehensive logger. 514 | 515 | ### E-commerce 516 | *Libraries and applications for taking payments and building online e-commerce stores.* 517 | 518 | * [Money](https://github.com/moneyphp/money) - A PHP implementation of Fowler's money pattern. 519 | * [Brick\Money](https://github.com/brick/money) - A money library for PHP, with support for contexts, cash roundings, currency conversion. 520 | * [OmniPay](https://github.com/thephpleague/omnipay) - A framework agnostic multi-gateway payment processing library. 521 | * [Payum](https://github.com/payum/payum) - A payment abstraction library. 522 | * [Shopware](https://github.com/shopware/shopware) - Highly customizable e-commerce software 523 | * [Swap](https://github.com/florianv/swap) - An exchange rates library. 524 | * [Sylius](https://sylius.com/) - An open source e-commerce solution. 525 | 526 | ### PDF 527 | *Libraries and software for working with PDF files.* 528 | 529 | * [Dompdf](https://github.com/dompdf/dompdf) - A HTML to PDF converter. 530 | * [PHPPdf](https://github.com/psliwa/PHPPdf) - A library for generating PDFs and images from XML. 531 | * [Snappy](https://github.com/KnpLabs/snappy) - A PDF and image generation library. 532 | * [WKHTMLToPDF](https://github.com/wkhtmltopdf/wkhtmltopdf) - A tool to convert HTML to PDF. 533 | 534 | ### Office 535 | *Libraries for working with office suite documents.* 536 | 537 | * [PHPPowerPoint](https://github.com/PHPOffice/PHPPresentation) - A library for working with Microsoft PowerPoint Presentations. 538 | * [PHPWord](https://github.com/PHPOffice/PHPWord) - A library for working with Microsoft Word documents. 539 | * [PHPSpreadsheet](https://github.com/PHPOffice/PhpSpreadsheet) - A pure PHP library for reading and writing spreadsheet files (successor of PHPExcel). 540 | * [Spout](https://github.com/box/spout) - Read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way . 541 | 542 | ### Database 543 | *Libraries for interacting with databases using object-relational mapping (ORM) or datamapping techniques.* 544 | 545 | * [Atlas.Orm](https://github.com/atlasphp/Atlas.Orm) - A data mapper implementation for your persistence model in PHP. 546 | * [Aura.Sql](https://github.com/auraphp/Aura.Sql) - Provides an extension to the native PDO along with a profiler and connection locator. 547 | * [Aura.SqlQuery](https://github.com/auraphp/Aura.SqlQuery) - Independent query builders for MySQL, PostgreSQL, SQLite, and Microsoft SQL Server. 548 | * [Baum](https://github.com/etrepat/baum) - A nested set implementation for Eloquent. 549 | * [CakePHP ORM](https://github.com/cakephp/orm) - Object-Relational Mapper, implemented using the DataMapper pattern. 550 | * [Cycle ORM](https://github.com/cycle/orm) - PHP DataMapper, ORM. 551 | * [Doctrine Extensions](https://github.com/Atlantic18/DoctrineExtensions) - A collection of Doctrine behavioural extensions. 552 | * [Doctrine](https://www.doctrine-project.org/) - A comprehensive DBAL and ORM. 553 | * [Laravel Eloquent](https://github.com/illuminate/database) - A simple ORM. 554 | * [Pomm](https://github.com/chanmix51/Pomm) - An Object Model Manager for PostgreSQL. 555 | * [ProxyManager](https://github.com/Ocramius/ProxyManager) - A set of utilities to generate proxy objects for data mappers. 556 | * [RedBean](https://redbeanphp.com/index.php) - A lightweight, configuration-less ORM. 557 | * [Spot2](https://github.com/spotorm/spot2) - A MySQL datamapper ORM. 558 | 559 | ### Migrations 560 | Libraries to help manage database schemas and migrations. 561 | 562 | * [Doctrine Migrations](https://www.doctrine-project.org/projects/migrations.html) - A migration library for Doctrine. 563 | * [Migrations](https://github.com/icomefromthenet/Migrations) - A migration management library. 564 | * [Phinx](https://github.com/cakephp/phinx) - Another database migration library. 565 | * [PHPMig](https://github.com/davedevelopment/phpmig) - Another migration management library. 566 | * [Ruckusing](https://github.com/ruckus/ruckusing-migrations) - Database migrations for PHP ala ActiveRecord Migrations with support for MySQL, Postgres, SQLite. 567 | 568 | ### NoSQL 569 | *Libraries for working with "NoSQL" backends.* 570 | 571 | * [PHPMongo](https://github.com/sokil/php-mongo) - A MongoDB ORM. 572 | * [Predis](https://github.com/nrk/predis) - A feature complete Redis library. 573 | 574 | ### Queue 575 | *Libraries for working with event and task queues.* 576 | 577 | * [Bernard](https://github.com/bernardphp/bernard) - A multibackend abstraction library. 578 | * [BunnyPHP](https://github.com/jakubkulhan/bunny) - A performant pure-PHP AMQP (RabbitMQ) sync and also async (ReactPHP) library. 579 | * [Pheanstalk](https://github.com/pheanstalk/pheanstalk) - A Beanstalkd client library. 580 | * [PHP AMQP](https://github.com/php-amqplib/php-amqplib) - A pure PHP AMQP library. 581 | * [Tarantool Queue](https://github.com/tarantool-php/queue) - PHP bindings for Tarantool Queue. 582 | * [Thumper](https://github.com/php-amqplib/Thumper) - A RabbitMQ pattern library. 583 | * [Enqueue](https://github.com/php-enqueue/enqueue-dev) - A message queue packages for PHP that supports RabbitMQ, AMQP, STOMP, Amazon SQS, Redis and Doctrine transports. 584 | 585 | ### Search 586 | *Libraries and software for indexing and performing search queries on data.* 587 | 588 | * [Elastica](https://github.com/ruflin/Elastica) - A client library for ElasticSearch. 589 | * [ElasticSearch PHP](https://github.com/elastic/elasticsearch-php) - The official client library for [ElasticSearch](https://www.elastic.co/). 590 | * [Solarium](https://www.solarium-project.org/) - A client library for [Solr](https://lucene.apache.org/solr/). 591 | * [Sphinx Search](https://github.com/ripaclub/sphinxsearch) - Sphinx Search library provides SphinxQL indexing and searching features 592 | * [SphinxQL query builder](https://foolcode.github.io/SphinxQL-Query-Builder/) - A query library for the [Sphinx](https://sphinxsearch.com/) search engine. 593 | 594 | ### Command Line 595 | *Libraries related to the command line.* 596 | 597 | * [Aura.Cli](https://github.com/auraphp/Aura.Cli) - Provides the equivalent of request ( Context ) and response ( Stdio ) objects for the command line interface, including Getopt support, and an independent Help object for describing commands. 598 | * [Boris](https://github.com/borisrepl/boris) - A tiny PHP REPL. 599 | * [Cilex](https://github.com/Cilex/Cilex) - A micro framework for building command line tools. 600 | * [CLI Menu](https://github.com/php-school/cli-menu) - A library for building CLI menus. 601 | * [CLIFramework](https://github.com/c9s/CLIFramework) - A command-line framework supports zsh/bash completion generation, subcommands and option constraints. It also powers phpbrew. 602 | * [CLImate](https://github.com/thephpleague/climate) - A library for outputting colours and special formatting. 603 | * [Commando](https://github.com/nategood/commando) - Another simple command line opt parser. 604 | * [Cron Expression](https://github.com/mtdowling/cron-expression) - A library to calculate cron run dates. 605 | * [GetOpt](https://github.com/getopt-php/getopt-php) - A command line opt parser. 606 | * [GetOptionKit](https://github.com/c9s/GetOptionKit) - Another command line opt parser. 607 | * [Hoa Console](https://github.com/hoaproject/Console) - Another command line library. 608 | * [PsySH](https://github.com/bobthecow/psysh) - Another PHP REPL. 609 | * [ShellWrap](https://github.com/MrRio/shellwrap) - A simple command line wrapper library. 610 | 611 | ### Authentication and Authorization 612 | *Libraries for implementing user authentication and authorization.* 613 | 614 | * [Aura.Auth](https://github.com/auraphp/Aura.Auth) - Provides authentication functionality and session tracking using various adapters. 615 | * [SocialConnect Auth](https://github.com/socialConnect/auth) - An open source social sign (OAuth1\OAuth2\OpenID\OpenIDConnect). 616 | * [Json Web Token](https://github.com/lcobucci/jwt) - Json Tokens to authenticate and transmit information. 617 | * [OAuth 1.0 Client](https://github.com/thephpleague/oauth1-client) - An OAuth 1.0 client library. 618 | * [OAuth 2.0 Client](https://github.com/thephpleague/oauth2-client) - An OAuth 2.0 client library. 619 | * [OAuth2 Server](https://bshaffer.github.io/oauth2-server-php-docs/) - Another OAuth2 server implementation. 620 | * [OAuth2 Server](https://oauth2.thephpleague.com/) - An OAuth2 authentication server, resource server and client library. 621 | * [Opauth](https://github.com/opauth/opauth) - A multi-provider authentication framework. 622 | * [PHP oAuthLib](https://github.com/Lusitanian/PHPoAuthLib) - Another OAuth library. 623 | * [Sentinel Social](https://cartalyst.com/manual/sentinel-social/2.0) - A library for social network authentication. 624 | * [Sentinel](https://cartalyst.com/manual/sentinel/2.0) - A framework agnostic authentication & authorisation library. 625 | * [TwitterOAuth](https://github.com/abraham/twitteroauth) - A Twitter OAuth library. 626 | 627 | ### Markup 628 | *Libraries for working with markup.* 629 | 630 | * [Cebe Markdown](https://github.com/cebe/markdown) - An fast and extensible Markdown parser. 631 | * [CommonMark PHP](https://github.com/thephpleague/commonmark) - Highly-extensible Markdown parser which fully supports the [CommonMark spec](https://spec.commonmark.org/). 632 | * [Decoda](https://github.com/milesj/decoda) - A lightweight markup parser library. 633 | * [Emoji](https://github.com/heyupdate/Emoji) - A library that converts unicode characters and names into emoji images. 634 | * [HTML to Markdown](https://github.com/thephpleague/html-to-markdown) - Converts HTML into Markdown. 635 | * [HTML5 PHP](https://github.com/Masterminds/html5-php) - An HTML5 parser and serializer library. 636 | * [Parsedown](https://github.com/erusev/parsedown) - Another Markdown parser. 637 | * [PHP Markdown](https://github.com/michelf/php-markdown) - A Markdown parser. 638 | 639 | ### Strings 640 | *Libraries for parsing and manipulating strings.* 641 | 642 | * [Agent](https://github.com/jenssegers/agent) - A PHP desktop/mobile user agent parser, based on Mobiledetect. 643 | * [ANSI to HTML5](https://github.com/sensiolabs/ansi-to-html) - An ANSI to HTML5 converter library. 644 | * [Color Jizz](https://github.com/mikeemoo/ColorJizz-PHP) - A library for manipulating and converting colours. 645 | * [Device Detector](https://github.com/matomo-org/device-detector) - Another library for parsing user agent strings. 646 | * [Hoa String](https://github.com/hoaproject/Ustring) - Another UTF-8 string library. 647 | * [Jieba-PHP](https://github.com/fukuball/jieba-php) - A PHP port of Python's jieba. Chinese text segmentation for natural language processing. 648 | * [Mobile-Detect](https://github.com/serbanghita/Mobile-Detect) - A lightweight PHP class for detecting mobile devices (including tablets). 649 | * [Patchwork UTF-8](https://github.com/nicolas-grekas/Patchwork-UTF8) - A portable library for working with UTF-8 strings. 650 | * [Portable UTF-8](https://github.com/voku/portable-utf8) - A string manipulation library with UTF-8 safe replacement methods. 651 | * [Slugify](https://github.com/cocur/slugify) - A library to convert strings to slugs. 652 | * [SQL Formatter](https://github.com/jdorn/sql-formatter/) - A library for formatting SQL statements. 653 | * [Stringy](https://github.com/voku/Stringy) - A string manipulation library with multibyte support. 654 | * [UA Parser](https://github.com/tobie/ua-parser/tree/master/php) - A library for parsing user agent strings. 655 | * [URLify](https://github.com/jbroadway/urlify) - A PHP port of Django's URLify.js. 656 | * [UUID](https://github.com/ramsey/uuid) - A library for generating UUIDs. 657 | 658 | ### Numbers 659 | *Libraries for working with numbers.* 660 | 661 | * [Brick\Math](https://github.com/brick/math) - A library providing large number support: `BigInteger`, `BigDecimal` and `BigRational`. 662 | * [ByteUnits](https://github.com/gabrielelana/byte-units) - A library to parse, format and convert byte units in binary and metric systems. 663 | * [LibPhoneNumber for PHP](https://github.com/giggsey/libphonenumber-for-php) - A PHP implementation of Google's phone number handling library. 664 | * [PHP Conversion](https://github.com/Crisu83/php-conversion) - Another library for converting between units of measure. 665 | * [PHP Units of Measure](https://github.com/triplepoint/php-units-of-measure) - A library for converting between units of measure. 666 | 667 | ### Filtering and Validation 668 | *Libraries for filtering and validating data.* 669 | 670 | * [Assert](https://github.com/beberlei/assert) - A validation library with a rich set of assertions. Supports assertion chaining and lazy assertions. 671 | * [Aura.Filter](https://github.com/auraphp/Aura.Filter) - Provides tools to validate and sanitize objects and arrays. 672 | * [CakePHP Validation](https://github.com/cakephp/validation) - Another validation library. 673 | * [Filterus](https://github.com/ircmaxell/filterus) - A simple PHP filtering library. 674 | * [ISO-codes](https://github.com/ronanguilloux/IsoCodes) - A library for validating inputs according standards from ISO, International Finance, Public Administrations, GS1, Book Industry, Phone numbers & Zipcodes for many countries. 675 | * [JSON Schema](https://github.com/justinrainbow/json-schema) - A [JSON Schema](https://json-schema.org/) validation library. 676 | * [MetaYaml](https://github.com/romaricdrigon/MetaYaml) - A schema validation library that supports YAML, JSON and XML. 677 | * [Respect Validation](https://github.com/Respect/Validation) - A simple validation library. 678 | * [Upload](https://github.com/brandonsavage/Upload) - A library for handling file uploads and validation. 679 | * [Valitron](https://github.com/vlucas/valitron) - Another validation library. 680 | * [Volan](https://github.com/serkin/Volan) - Another simplified validation library. 681 | 682 | ### API 683 | *Libraries and web tools for developing APIs.* 684 | 685 | * [API Platform](https://api-platform.com ) - Expose in minutes an hypermedia REST API that embraces JSON-LD, Hydra format. 686 | * [Laminas API Tool Skeleton](https://github.com/laminas-api-tools/api-tools-skeleton) - An API builder built with the Laminas Framework. 687 | * [Drest](https://github.com/leedavis81/drest) - A library for exposing Doctrine entities as REST resource endpoints. 688 | * [HAL](https://github.com/blongden/hal) - A Hypertext Application Language (HAL) builder library. 689 | * [Hateoas](https://github.com/willdurand/Hateoas) - A HATEOAS REST web service library. 690 | * [Negotiation](https://github.com/willdurand/Negotiation) - A content negotiation library. 691 | * [Restler](https://github.com/Luracast/Restler) - A lightweight framework to expose PHP methods as RESTful web API. 692 | * [wsdl2phpgenerator](https://github.com/wsdl2phpgenerator/wsdl2phpgenerator) - A tool to generate PHP classes from SOAP WSDL files. 693 | 694 | ### Caching 695 | *Libraries for caching data.* 696 | 697 | * [Alternative PHP Cache (APC)](https://www.php.net/manual/en/book.apc.php) - Open opcode cache for PHP. 698 | * [APIx Cache](https://github.com/apix/cache) - A thin PSR-6 cache wrapper to various caching backends emphasising cache tagging and indexing. 699 | * [CacheTool](https://github.com/gordalina/cachetool) - A tool to clear APC/opcode caches from the command line. 700 | * [CakePHP Cache](https://github.com/cakephp/cache) - A caching library. 701 | * [Doctrine Cache](https://github.com/doctrine/cache) - A caching library. 702 | * [Metaphore](https://github.com/sobstel/metaphore) - Cache slam defense using a semaphore to prevent dogpile effect. 703 | * [Stash](https://github.com/tedious/Stash) - Another library for caching. 704 | * [Laminas Cache](https://github.com/laminas/laminas-cache) - Another caching library. 705 | 706 | ### Data Structure and Storage 707 | *Libraries that implement data structure or storage techniques.* 708 | 709 | * [CakePHP Collection](https://github.com/cakephp/collection) - A simple collections library. 710 | * [Fractal](https://github.com/thephpleague/fractal) - A library for converting complex data structures to JSON output. 711 | * [Ginq](https://github.com/akanehara/ginq) - Another PHP library based on .NET's LINQ. 712 | * [JsonMapper](https://github.com/cweiske/jsonmapper) - A library that maps nested JSON structures onto PHP classes. 713 | * [JSON Machine](https://github.com/halaxa/json-machine) - Provides iteration over huge JSONs using simple `foreach` 714 | * [Knapsack](https://github.com/DusanKasan/Knapsack) - Collection library inspired by Clojure's sequences. 715 | * [msgpack.php](https://github.com/rybakit/msgpack.php) - A pure PHP implementation of the [MessagePack](https://msgpack.org/) serialization format. 716 | * [PINQ](https://github.com/TimeToogo/Pinq) - A PHP library based on .NET's LINQ (Language Integrated Query). 717 | * [Serializer](https://github.com/schmittjoh/serializer) - A library for serialising and de-serialising data. 718 | * [YaLinqo](https://github.com/Athari/YaLinqo) - Yet Another LINQ to Objects for PHP. 719 | * [Laminas Serializer](https://github.com/laminas/laminas-serializer) - Another library for serialising and de-serialising data. 720 | 721 | ### Notifications 722 | *Libraries for working with notification software.* 723 | 724 | * [JoliNotif](https://github.com/jolicode/JoliNotif) - A cross-platform library for desktop notification (support for Growl, notify-send, toaster, etc) 725 | * [Notification Pusher](https://github.com/Ph3nol/NotificationPusher) - A standalone library for device push notifications. 726 | * [Notificato](https://github.com/mac-cain13/notificato) - A library for handling push notifications. 727 | * [Notificator](https://github.com/namshi/notificator) - A lightweight notification library. 728 | * [Php-pushwoosh](https://github.com/gomoob/php-pushwoosh) - A PHP Library to easily send push notifications with the Pushwoosh REST Web Services. 729 | 730 | ### Deployment 731 | *Libraries for project deployment.* 732 | 733 | * [Deployer](https://github.com/deployphp/deployer) - A deployment tool. 734 | * [Envoy](https://github.com/laravel/envoy) - A tool to run SSH tasks with PHP. 735 | * [Rocketeer](https://github.com/rocketeers/rocketeer) - A fast and easy deployer for the PHP world. 736 | 737 | ### Internationalisation and Localisation 738 | *Libraries for Internationalization (I18n) and Localization (L10n).* 739 | 740 | * [Aura.Intl](https://github.com/auraphp/Aura.Intl) - Provides internationalization (I18N) tools, specifically package-oriented per-locale message translation. 741 | * [CakePHP I18n](https://github.com/cakephp/i18n) - Message translation and localization for dates and numbers. 742 | 743 | ### Serverless 744 | *Libraries and tools to help build serverless web applications.* 745 | 746 | * [Bref](https://bref.sh/) - Serverless PHP on AWS Lambda. 747 | * [OpenWhisk](http://openwhisk.apache.org/) - An open source serverless cloud platform. 748 | * [Serverless Framework](https://serverless.com/cli/) - An open source framework for building serverless applications. 749 | * [Laravel Vapor](https://vapor.laravel.com/) - A serverless deployment platform for Laravel, powered by AWS. 750 | 751 | ## Configuration 752 | *Libraries and tools for configuration.* 753 | 754 | * [PHP Dotenv](https://github.com/vlucas/phpdotenv) - Parse and load environment variables from `.env` files. 755 | * [Symfony Dotenv](https://github.com/symfony/dotenv)- Parse and load environment variables from `.env` files. 756 | * [Yo! Symfony TOML](https://github.com/yosymfony/toml) - A PHP parser for [TOML](https://github.com/toml-lang/toml). 757 | 758 | ### Third Party APIs 759 | *Libraries for accessing third party APIs.* 760 | 761 | * [Amazon Web Service SDK](https://github.com/aws/aws-sdk-php) - The official PHP AWS SDK library. 762 | * [AsyncAWS](https://async-aws.com/) - An unofficial asynchronous PHP AWS SDK. 763 | * [Campaign Monitor](https://campaignmonitor.github.io/createsend-php/) - The official Campaign Monitor PHP library. 764 | * [Dropbox SDK](https://github.com/dropbox/dropbox-sdk-php) - The official PHP Dropbox SDK library. 765 | * [Github](https://github.com/KnpLabs/php-github-api) - A library to interface with the Github API. 766 | * [Mailgun](https://github.com/mailgun/mailgun-php) The official Mailgun PHP API. 767 | * [Square](https://github.com/square/connect-php-sdk) - The official Square PHP SDK for payments and other Square APIs. 768 | * [Stripe](https://github.com/stripe/stripe-php) - The official Stripe PHP library. 769 | * [Twilio](https://github.com/twilio/twilio-php) - The official Twilio PHP REST API. 770 | 771 | ### Extensions 772 | *Libraries to help build PHP extensions.* 773 | 774 | * [PHP CPP](https://www.php-cpp.com/) - A C++ library for developing PHP extensions. 775 | * [Zephir](https://github.com/phalcon/zephir) - A compiled language between PHP and C++ for developing PHP extensions. 776 | 777 | ### Miscellaneous 778 | *Useful libraries or tools that don't fit in the categories above.* 779 | 780 | * [Annotations](https://github.com/doctrine/annotations) - An annotations library (part of Doctrine). 781 | * [BotMan](https://github.com/botman/botman) - A framework agnostic PHP library to build cross-platform chat bots. 782 | * [CakePHP Utility](https://github.com/cakephp/utility) - Utility classes such as Inflector, String, Hash, Security and XML. 783 | * [Chief](https://github.com/adamnicholson/Chief) - A command bus library. 784 | * [ClassPreloader](https://github.com/ClassPreloader/ClassPreloader) - A library for optimising autoloading. 785 | * [Country List](https://github.com/umpirsky/country-list) - A list of all countries with names and ISO 3166-1 codes. 786 | * [Embera](https://github.com/mpratt/Embera) - An Oembed consumer library. 787 | * [Essence](https://github.com/essence/essence) - A library for extracting web media. 788 | * [Expose](https://github.com/beyondcode/expose) - An open source PHP tunneling service. 789 | * [Graphviz](https://github.com/alexandresalome/graphviz) - A Graphviz library. 790 | * [Hprose-PHP](https://github.com/hprose/hprose-php) - A very newbility RPC Library, support 25+ languages now. 791 | * [JSON Lint](https://github.com/Seldaek/jsonlint) - A JSON lint utility. 792 | * [JSONPCallbackValidator](https://github.com/willdurand/JsonpCallbackValidator) - A library for validating JSONP callbacks. 793 | * [Lock](https://github.com/php-lock/lock) - A lock library to provide exclusive execution. 794 | * [Metrics](https://github.com/beberlei/metrics) - A simple metrics API library. 795 | * [noCAPTCHA](https://github.com/ARCANEDEV/noCAPTCHA) - Helper for Google's noCAPTCHA (reCAPTCHA). 796 | * [Nmap](https://github.com/willdurand/nmap) - A PHP wrapper around [Nmap](https://nmap.org/). 797 | * [Pagerfanta](https://github.com/whiteoctober/Pagerfanta) - A pagination library. 798 | * [PHP PassBook](https://github.com/eymengunay/php-passbook) - A PHP library for iOS PassBook. 799 | * [PHP-ML](https://github.com/php-ai/php-ml) - A library for Machine Learning in PHP. 800 | * [PHPCR](https://github.com/phpcr/phpcr) - A PHP port of the Java Content Repository (JCR). 801 | * [PHPStack](http://dunkels.com/adam/phpstack/) - A TCP/IP stack proof of concept written in PHP. 802 | * [print_o](https://github.com/koriym/print_o) - An object graph visualizer. 803 | * [Procrastinator](https://github.com/lstrojny/Procrastinator) - A library for running time consuming tasks. 804 | * [Prooph Service Bus](https://github.com/prooph/service-bus) - Lightweight message bus supporting CQRS and Micro Services 805 | * [RMT](https://github.com/liip/RMT) - A library for versioning and releasing software. 806 | * [sabre/vobject](https://github.com/sabre-io/vobject) - A library for parsing VCard and iCalendar objects. 807 | * [Safe](https://github.com/thecodingmachine/safe) - All PHP functions, rewritten to throw exceptions instead of returning false. 808 | * [Slimdump](https://github.com/webfactory/slimdump) - An easy dumper tool for MySQL. 809 | * [Spork](https://github.com/kriswallsmith/spork) - A process forking library. 810 | * [SuperClosure](https://github.com/jeremeamia/super_closure) - A library that allows Closures to be serialized. 811 | * [Underscore](https://anahkiasen.github.io/underscore-php/) - A PHP port of the Underscore JS library. 812 | 813 | # Software 814 | *Software for creating a development environment.* 815 | 816 | ### PHP Installation 817 | *Tools to help install and manage PHP on your computer.* 818 | 819 | * [Brew PHP Switcher](https://github.com/philcook/brew-php-switcher) - Brew PHP switcher. 820 | * [HomeBrew](https://brew.sh/) - A package manager for OSX. 821 | * [Laravel Valet](https://laravel.com/docs/master/valet) - A development environment for macOS. 822 | * [PHP Brew](https://github.com/phpbrew/phpbrew) - A PHP version manager and installer. 823 | * [PHP Build](https://github.com/php-build/php-build) - Another PHP version installer. 824 | * [PHP OSX](https://php-osx.liip.ch/) - A PHP installer for OSX. 825 | 826 | ### Development Environment 827 | *Software and tools for creating a sandboxed development environment.* 828 | 829 | * [Ansible](https://www.ansible.com/) - A radically simple orchestration framework. 830 | * [Docker](https://www.docker.com/) - A containerization platform. 831 | * [Laravel Homestead](https://laravel.com/docs/master/homestead) - A local development environment for Laravel. 832 | * [Laradock](http://laradock.io/) - A full PHP development environment based on Docker. 833 | * [Puppet](https://puppet.com/) - A server automation framework and application. 834 | * [Vagrant](https://www.vagrantup.com/) - A portable development environment utility. 835 | * [Vessel](https://vessel.shippingdocker.com/) - Simple Docker development environments for Laravel. 836 | 837 | ### Virtual Machines 838 | *Alternative PHP virtual machines.* 839 | 840 | * [Hack](https://hacklang.org/) - A programming language for HHVM. 841 | * [HHVM](https://github.com/facebook/hhvm) - A Virtual Machine, Runtime and JIT for PHP by Facebook. 842 | * [PeachPie](https://github.com/peachpiecompiler/peachpie) - PHP compiler and runtime for .NET and .NET Core. 843 | 844 | ### Text Editors and IDEs 845 | *Text Editors and Integrated Development Environments (IDE) with support for PHP.* 846 | 847 | * [Eclipse for PHP Developers](https://www.eclipse.org/downloads/) - A PHP IDE based on the Eclipse platform. 848 | * [Netbeans](https://netbeans.org) - An IDE with support for PHP and HTML5. 849 | * [PhpStorm](https://www.jetbrains.com/phpstorm/) - A commercial PHP IDE. 850 | * [VS Code](https://code.visualstudio.com/) - An open source code editor. 851 | 852 | ### Web Applications 853 | *Web-based applications and tools.* 854 | 855 | * [3V4L](https://3v4l.org/) - An online PHP & HHVM shell. 856 | * [DBV](https://dbv.vizuina.com/) - A database version control application. 857 | * [PHP Queue](https://github.com/CoderKungfu/php-queue) - An application for managing queueing backends. 858 | * [MailCatcher](https://github.com/sj26/mailcatcher) - A web tool for capturing and viewing emails. 859 | * [Cachet](https://github.com/cachethq/cachet) - The open source status page system. 860 | * [phpRedisAdmin](https://github.com/ErikDubbelboer/phpRedisAdmin) - A simple web interface to manage [Redis](https://redis.io/) databases. 861 | * [phpMyAdmin](https://github.com/phpmyadmin/phpmyadmin) - A web interface for MySQL/MariaDB. 862 | * [Adminer](https://www.adminer.org/) - Database management in a single PHP file. 863 | * [Lychee](https://github.com/electerious/Lychee) - An easy to use and great looking photo-management-system. 864 | 865 | ### Infrastructure 866 | *Infrastructure for providing PHP applications and services.* 867 | 868 | * [appserver.io](https://github.com/appserver-io/appserver) - A multithreaded application server for PHP, written in PHP. 869 | * [php-pm](https://github.com/php-pm/php-pm) - A process manager, supercharger and load balancer for PHP applications. 870 | * [RoadRunner](https://github.com/spiral/roadrunner) - High-performance PHP application server, load-balancer and process manager. 871 | 872 | # Resources 873 | Various resources, such as books, websites and articles, for improving your PHP development skills and knowledge. 874 | 875 | ### PHP Websites 876 | *Useful PHP-related websites.* 877 | 878 | * [libs.garden: PHP](https://libs.garden/php) - An overview of fastest growing PHP libraries. 879 | * [Nomad PHP](https://nomadphp.com/) - A online PHP learning resource. 880 | * [PHP Best Practices](https://phpbestpractices.org/) - A PHP best practice guide. 881 | * [PHP FIG](https://www.php-fig.org/) - The PHP Framework Interoperability Group. 882 | * [PHP Package Development Standards](http://php-pds.com) - Package development standards for PHP. 883 | * [PHP School](https://www.phpschool.io/) - Open Source Learning for PHP. 884 | * [PHP Security](https://phpsecurity.readthedocs.io/en/latest/index.html) - A guide to PHP security. 885 | * [PHP The Right Way](https://phptherightway.com/) - A PHP best practice quick reference guide. 886 | * [PHP UG](https://php.ug) - A website to help people locate their nearest PHP user group (UG). 887 | * [PHP Versions](http://phpversions.info/) - Lists which versions of PHP are available on several popular web hosts. 888 | * [PHP Weekly](http://www.phpweekly.com/archive.html) - A weekly PHP newsletter. 889 | * [Securing PHP](https://www.securingphp.com/) - A newsletter about PHP security and library recommendations. 890 | * [Seven PHP](https://7php.com/) - A website that interviews members of the PHP community. 891 | * [PHP Annotated Monthly](https://blog.jetbrains.com/phpstorm/category/php-annotated-monthly/) - A monthly digest of PHP news. 892 | 893 | ### Other Websites 894 | *Useful websites related to web development.* 895 | 896 | * [Atlassian Git Tutorials](https://www.atlassian.com/git) - A series of Git tutorials. 897 | * [Learning Linux](https://linuxjourney.com/) - A website for learning Linux. 898 | * [Semantic Versioning](https://semver.org/) - A website explaining semantic versioning. 899 | * [Servers for Hackers](https://serversforhackers.com/) - A newsletter about server management. 900 | * [The Open Web Application Security Project (OWASP)](https://owasp.org/) - An open software security community. 901 | 902 | ### PHP Books 903 | *Fantastic PHP-related books.* 904 | 905 | * [Domain-Driven Design in PHP](https://leanpub.com/ddd-in-php) - Real examples written in PHP showcasing DDD Architectural Styles. 906 | * [Functional Programming in PHP](https://www.functionalphp.com/) - This book will show you how to leverage these new PHP5.3+ features by understanding functional programming principles 907 | * [Grumpy PHPUnit](https://leanpub.com/grumpy-phpunit) - A book about unit testing with PHPUnit by Chris Hartjes. 908 | * [Mastering Object-Orientated PHP](https://www.brandonsavage.net/) - A book about object-orientated PHP by Brandon Savage. 909 | * [Modern PHP New Features and Good Practices](https://shop.oreilly.com/product/0636920033868.do) - A book about new PHP features and best practices by Josh Lockhart. 910 | * [Modernizing Legacy Applications in PHP](https://leanpub.com/mlaphp) - A book about modernizing legacy PHP applications by Paul M. Jones. 911 | * [PHP 7 Upgrade Guide](https://leanpub.com/php7) - An ebook covering all of the features and changes in PHP 7 by Colin O'Dell. 912 | * [PHP Pandas](https://daylerees.com/php-pandas/) - A book about learning to write PHP by Dayle Rees. 913 | * [Scaling PHP Applications](https://www.scalingphpbook.com) - An ebook about scaling PHP applications by Steve Corona. 914 | * [Securing PHP: Core Concepts](https://leanpub.com/securingphp-coreconcepts) - A book about common security terms and practices for PHP by Chris Cornutt. 915 | * [Signaling PHP](https://leanpub.com/signalingphp) - A book about catching PCNTL signals in CLI scripts by Cal Evans. 916 | * [The Grumpy Programmer's Guide to Building Testable PHP Applications](https://leanpub.com/grumpy-testing) - A book about building testing PHP applications by Chris Hartjes. 917 | * [XML Parsing with PHP](https://www.phparch.com/books/xml-parsing-with-php/) - This book covers parsing and validating XML documents, leveraging XPath expressions, and working with namespaces as well as how to create and modify XML files programmatically. 918 | 919 | ### Other Books 920 | *Books related to general computing and web development.* 921 | 922 | * [Eloquent JavaScript](https://eloquentjavascript.net/) - A book about JavaScript programming by Marijn Haverbeke. 923 | * [Pro Git](https://git-scm.com/book/en/v2) - A book about Git by Scott Chacon and Ben Straub. 924 | * [The Linux Command Line](http://linuxcommand.org/tlcl.php) - A book about the Linux command line by William Shotts. 925 | * [The Tangled Web — Securing Web Applications](https://www.amazon.com/Tangled-Web-Securing-Modern-Applications/dp/1593273886) - A book about securing web applications by Michal Zalewski. 926 | 927 | ### PHP Videos 928 | *Fantastic PHP-related videos.* 929 | 930 | * [Nomad PHP Lightning Talks](https://www.youtube.com/c/nomadphp) - 10 to 15 minute Lightning Talks by PHP community members. 931 | * [PHP UK Conference](https://www.youtube.com/user/phpukconference/videos) - A collection of videos from the PHP UK Conference. 932 | * [Programming with Anthony](https://www.youtube.com/playlist?list=PLM-218uGSX3DQ3KsB5NJnuOqPqc5CW2kW) - A video series by Anthony Ferrara. 933 | * [Taking PHP Seriously](https://www.infoq.com/presentations/php-history/) - A talk outlining PHP's strengths by Keith Adams of Facebook. 934 | * [Laracasts](https://laracasts.com) - Screencasts about Laravel, Vue JS and more. 935 | 936 | ### PHP Podcasts 937 | *Podcasts with a focus on PHP topics.* 938 | 939 | * [Laravel Podcast](https://laravelpodcast.com/) - Laravel and PHP development news and discussion. 940 | * [PHP Internals News](https://phpinternals.news) - A podcast about PHP internals. 941 | * [PHP Roundtable](https://www.phproundtable.com/) - The PHP Roundtable is a casual gathering of developers discussing topics that PHP nerds care about. 942 | * [PHP Town Hall](https://phptownhall.com/) - A casual PHP podcast by Ben Edmunds and Phil Sturgeon. 943 | * [Voices of the ElePHPant](https://voicesoftheelephpant.com/) Interviews with the people that make the PHP community special. 944 | 945 | ### PHP Reading 946 | *PHP-releated reading materials.* 947 | 948 | * [Composer Primer](https://daylerees.com/composer-primer/) - A Composer primer. 949 | * [Composer Stability Flags](https://igor.io/2013/02/07/composer-stability-flags.html) - An article about Composer stability flags. 950 | * [Composer Versioning](https://igor.io/2013/01/07/composer-versioning.html) - An article about Composer versioning. 951 | * [Create Your Own PHP Framework](http://fabien.potencier.org/create-your-own-framework-on-top-of-the-symfony2-components-part-1.html) - A series of articles on how to make your own PHP framework by Fabien Potencier. 952 | * [Don't Worry About BREACH](https://blog.ircmaxell.com/2013/08/dont-worry-about-breach.html) - An article about the BREACH hack and CSRF tokens. 953 | * [On PHP 5.3, Lambda Functions and Closures](http://fabien.potencier.org/on-php-5-3-lambda-functions-and-closures.html) - An article about lambda functions and closures. 954 | * [PHP Is Much Better Than You Think](http://fabien.potencier.org/php-is-much-better-than-you-think.html) - An article about the PHP language and ecosystem. 955 | * [PHP Package Checklist](https://phppackagechecklist.com/) - A checklist for successful PHP package development. 956 | * [PHP Sucks! But I Like It!](https://blog.ircmaxell.com/2012/04/php-sucks-but-i-like-it.html) - An article about the pros and cons of PHP. 957 | * [Preventing CSRF Attacks](https://blog.ircmaxell.com/2013/02/preventing-csrf-attacks.html) - An article on preventing CSRF attacks. 958 | * [Seven Ways to Screw Up BCrypt](https://blog.ircmaxell.com/2012/12/seven-ways-to-screw-up-bcrypt.html) - An article about correct BCrypt implementation. 959 | * [The 2018 Guide to Building Secure PHP Software](https://paragonie.com/blog/2017/12/2018-guide-building-secure-php-software) - A guide to building secure PHP software. 960 | * [Use Env](https://seancoates.com/blogs/use-env/) - An article about using the unix environment helper. 961 | 962 | ### PHP Internals Reading 963 | *Reading materials related to the PHP internals or performance.* 964 | 965 | * [PHP RFCs](https://wiki.php.net/rfc) - The home of PHP RFCs (Request for Comments). 966 | * [Externals](https://externals.io/) - PHP internal discussions. 967 | * [PHP RFC Watch](https://php-rfc-watch.beberlei.de/) - Watch the latest PHP [RFCs](https://wiki.php.net/rfc). 968 | * [Disproving the Single Quotes Myth](https://nikic.github.io/2012/01/09/Disproving-the-Single-Quotes-Performance-Myth.html) - An article about performance of single and double quoted strings. 969 | * [How Big Are PHP Arrays (And Values) Really?](https://nikic.github.io/2011/12/12/How-big-are-PHP-arrays-really-Hint-BIG.html) - An article about array internals. 970 | * [How Foreach Works](https://stackoverflow.com/questions/10057671/how-does-php-foreach-actually-work/14854568#14854568) - A detailed StackOverflow answer about foreach. 971 | * [How Long is a Piece of String](http://blog.golemon.com/2006/06/how-long-is-piece-of-string.html) - An article about string internals. 972 | * [PHP Evaluation Order](https://gist.github.com/nikic/6699370) - An article about evaluation order in PHP. 973 | * [PHP Internals Book](http://www.phpinternalsbook.com) - An online book about PHP internals, written by three core developers. 974 | * [Print vs Echo, Which One is Faster?](http://fabien.potencier.org/print-vs-echo-which-one-is-faster.html) - An article about print and echo performance. 975 | * [The PHP Ternary Operator. Fast or Not?](http://fabien.potencier.org/the-php-ternary-operator-fast-or-not.html) - An article ternary performance. 976 | * [Understanding OpCodes](http://blog.golemon.com/2008/01/understanding-opcodes.html) - An article about opcodes. 977 | * [When Does Foreach Copy?](https://nikic.github.io/2011/11/11/PHP-Internals-When-does-foreach-copy.html) - An article about the internals of foreach. 978 | * [Why Objects (Usually) Use Less Memory Than Arrays](https://gist.github.com/nikic/5015323) - An article about object and array internals. 979 | * [You're Being Lied To](http://blog.golemon.com/2007/01/youre-being-lied-to.html) - An article about internal ZVALs. 980 | * Collecting Garbage: [1](https://www.php.net/manual/en/features.gc.refcounting-basics.php) [2](https://www.php.net/manual/en/features.gc.collecting-cycles.php) [3](https://www.php.net/manual/en/features.gc.performance-considerations.php) - A series about the PHP garbage collection internals. 981 | * PHP Source Code for Developers: [1](https://blog.ircmaxell.com/2012/03/phps-source-code-for-php-developers.html) [2](https://nikic.github.io/2012/03/16/Understanding-PHPs-internal-function-definitions.html) [3](https://blog.ircmaxell.com/2012/03/phps-source-code-for-php-developers_21.html) [4](https://nikic.github.io/2012/03/28/Understanding-PHPs-internal-array-implementation.html) - A series about the PHP source code. 982 | 983 | ### PHP Magazines 984 | *Fantastic PHP-related magazines.* 985 | 986 | * [php[architect]](https://www.phparch.com/magazine/) - A monthly magazine dedicated to PHP. 987 | --------------------------------------------------------------------------------