|
|
@@ -24,7 +24,7 @@ Please see [CONTRIBUTING](https://github.com/ziadoz/awesome-php/blob/master/CONT
|
|
24
|
24
|
- [Middlewares](#middlewares)
|
|
25
|
25
|
- [URL](#url)
|
|
26
|
26
|
- [Email](#email)
|
|
27
|
|
- - [Files](#files)
|
|
|
27
|
+ - [Files](#Files)
|
|
28
|
28
|
- [Streams](#streams)
|
|
29
|
29
|
- [Dependency Injection](#dependency-injection)
|
|
30
|
30
|
- [Imagery](#imagery)
|
|
|
@@ -56,12 +56,13 @@ Please see [CONTRIBUTING](https://github.com/ziadoz/awesome-php/blob/master/CONT
|
|
56
|
56
|
- [Search](#search)
|
|
57
|
57
|
- [Command Line](#command-line)
|
|
58
|
58
|
- [Authentication and Authorization](#authentication-and-authorization)
|
|
59
|
|
- - [Markup](#markup)
|
|
|
59
|
+ - [Markup and CSS](#markup-and-css)
|
|
|
60
|
+ - [JSON](#json)
|
|
60
|
61
|
- [Strings](#strings)
|
|
61
|
62
|
- [Numbers](#numbers)
|
|
62
|
63
|
- [Filtering and Validation](#filtering-and-validation)
|
|
63
|
64
|
- [API](#api)
|
|
64
|
|
- - [Caching](#caching)
|
|
|
65
|
+ - [Caching and Locking](#caching-and-locking)
|
|
65
|
66
|
- [Data Structure and Storage](#data-structure-and-storage)
|
|
66
|
67
|
- [Notifications](#notifications)
|
|
67
|
68
|
- [Deployment](#deployment)
|
|
|
@@ -80,10 +81,10 @@ Please see [CONTRIBUTING](https://github.com/ziadoz/awesome-php/blob/master/CONT
|
|
80
|
81
|
- [Infrastructure](#infrastructure)
|
|
81
|
82
|
- [Resources](#resources)
|
|
82
|
83
|
- [PHP Websites](#php-websites)
|
|
83
|
|
- - [Other Websites](#other-websites)
|
|
84
|
84
|
- [PHP Books](#php-books)
|
|
85
|
85
|
- [PHP Videos](#php-videos)
|
|
86
|
86
|
- [PHP Podcasts](#php-podcasts)
|
|
|
87
|
+ - [PHP Newsletters](#php-newsletters)
|
|
87
|
88
|
- [PHP Reading](#php-reading)
|
|
88
|
89
|
- [PHP Internals Reading](#php-internals-reading)
|
|
89
|
90
|
|
|
|
@@ -94,83 +95,91 @@ Please see [CONTRIBUTING](https://github.com/ziadoz/awesome-php/blob/master/CONT
|
|
94
|
95
|
* [Packagist](https://packagist.org/) - The PHP Package Repository.
|
|
95
|
96
|
* [Private Packagist](https://packagist.com/) - Composer package archive as a service for PHP.
|
|
96
|
97
|
* [WordPress Packagist](https://wpackagist.org/) - Manage your plugins with Composer.
|
|
97
|
|
-* [Zend Framework Packages](https://packages.zendframework.com/) - Zend Framework Composer Repository.
|
|
98
|
98
|
|
|
99
|
99
|
### Dependency Management
|
|
100
|
100
|
*Libraries for dependency and package management.*
|
|
101
|
101
|
|
|
102
|
102
|
* [Composer Installers](https://github.com/composer/installers) - A multi framework Composer library installer.
|
|
103
|
103
|
* [Composer](https://getcomposer.org/) - A package and dependency manager.
|
|
104
|
|
-* [Melody](https://melody.sensiolabs.org/) - A tool to build one file Composer scripts.
|
|
|
104
|
+* [Phive](https://phar.io/) - A PHAR manager.
|
|
105
|
105
|
* [Pickle](https://github.com/FriendsOfPHP/pickle) - A PHP extension installer.
|
|
106
|
106
|
|
|
107
|
107
|
### Dependency Management Extras
|
|
108
|
108
|
*Extras related to dependency management.*
|
|
109
|
109
|
|
|
110
|
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.
|
|
|
111
|
+* [Composer Merge Plugin](https://github.com/wikimedia/composer-merge-plugin) - A composer plugin to merge several `composer.json` files.
|
|
|
112
|
+* [Composer Normalize](https://github.com/ergebnis/composer-normalize) - A plugin for normalising `composer.json` files.
|
|
|
113
|
+* [Composer Patches](https://github.com/cweagans/composer-patches) - A plugin for Composer to apply patches.
|
|
|
114
|
+* [Composer Require Checker](https://github.com/maglnet/ComposerRequireChecker) - CLI tool to analyze composer dependencies and verify that no unknown symbols are used in the sources of a package.
|
|
|
115
|
+* [Composer Unused](https://github.com/composer-unused/composer-unused) - A CLI Tool to scan for unused composer packages.
|
|
112
|
116
|
* [Prestissimo](https://github.com/hirak/prestissimo) - A composer plugin which enables parallel install process.
|
|
|
117
|
+* [Repman](https://repman.io) - A private PHP package repository manager and Packagist proxy.
|
|
113
|
118
|
* [Satis](https://github.com/composer/satis) - A static Composer repository generator.
|
|
114
|
|
-* [tooly](https://github.com/tommy-muehle/tooly-composer-script) - A library to manage PHAR files in project using Composer.
|
|
|
119
|
+* [Tooly](https://github.com/tommy-muehle/tooly-composer-script) - A library to manage PHAR files in project using Composer.
|
|
115
|
120
|
* [Toran Proxy](https://toranproxy.com) - A static Composer repository and proxy.
|
|
116
|
121
|
|
|
117
|
122
|
### Frameworks
|
|
118
|
123
|
*Web development frameworks.*
|
|
119
|
124
|
|
|
120
|
|
-* [Aura Framework](http://auraphp.com/framework/) - A framework built from independent components.
|
|
121
|
|
-* [CakePHP](https://cakephp.org/) - A rapid application development framework (CP).
|
|
122
|
|
-* [Laravel 6](https://laravel.com/) - Another PHP framework (L6).
|
|
123
|
|
-* [Nette](https://nette.org) - Another framework comprised of individual components.
|
|
|
125
|
+* [CakePHP](https://cakephp.org/) - A rapid application development framework.
|
|
|
126
|
+* [Laminas](https://getlaminas.org/) - A framework comprised of individual components (previously Zend Framework).
|
|
|
127
|
+* [Laravel](https://laravel.com/) - A web application framework with expressive, elegant syntax.
|
|
|
128
|
+* [Nette](https://nette.org) - A web framework comprised of mature components.
|
|
124
|
129
|
* [Phalcon](https://phalcon.io/en-us) - A framework implemented as a C extension.
|
|
125
|
|
-* [PPI Framework 2](https://github.com/ppi) - An interoperability framework.
|
|
126
|
|
-* [Symfony](https://symfony.com/) - A framework comprised of individual components (SF).
|
|
127
|
|
-* [Yii2](https://github.com/yiisoft/yii2/) - Another PHP framework.
|
|
128
|
|
-* [Zend Framework 3](https://framework.zend.com/learn) - A framework comprised of individual components (ZF3).
|
|
129
|
|
-* [Ice](https://www.iceframework.org/) - Another simple and fast PHP framework delivered as C-extension.
|
|
|
130
|
+* [Spiral](https://spiral.dev/) - A high performance PHP/Go framework.
|
|
|
131
|
+* [Symfony](https://symfony.com/) - A set of reusable components and a web framework.
|
|
|
132
|
+* [Yii2](https://github.com/yiisoft/yii2/) - A fast, secure, and efficient web framework.
|
|
130
|
133
|
|
|
131
|
134
|
### Framework Extras
|
|
132
|
135
|
*Extras related to web development frameworks.*
|
|
133
|
136
|
|
|
134
|
137
|
* [CakePHP CRUD](https://github.com/friendsofcake/crud) - A Rapid Application Development (RAD) plugin for CakePHP.
|
|
135
|
138
|
* [Knp RAD Components](https://rad.knplabs.com/) - A set of Rapid Application Development (RAD) components for Symfony.
|
|
|
139
|
+* [LaravelS](https://github.com/hhxsv5/laravel-s) - Glue for using Swoole in Laravel or Lumen.
|
|
136
|
140
|
* [Symfony CMF](https://github.com/symfony-cmf/symfony-cmf) - A Content Management Framework to create custom CMS.
|
|
|
141
|
+* [Livewire](https://laravel-livewire.com/) - A full-stack framework for Laravel that takes the pain out of building dynamic UIs.
|
|
137
|
142
|
|
|
138
|
143
|
### Content Management Systems (CMS)
|
|
139
|
144
|
*Tools for managing digital content.*
|
|
|
145
|
+
|
|
140
|
146
|
* [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.
|
|
|
147
|
+* [Concrete5](https://www.concretecms.com/) - A CMS targeting users with a minimum of technical skills.
|
|
|
148
|
+* [CraftCMS](https://github.com/craftcms/cms) - A flexible, user-friendly CMS for creating custom digital experiences on the web and beyond.
|
|
142
|
149
|
* [Drupal](https://www.drupal.org) - An enterprise level CMS.
|
|
143
|
150
|
* [Grav](https://github.com/getgrav/grav) - A modern flat-file CMS.
|
|
144
|
151
|
* [Joomla](https://www.joomla.org/) - Another leading CMS.
|
|
145
|
|
-* [Magento](https://magento.com/) - The most popular ecommerce platform.
|
|
146
|
|
-* [WordPress](https://wordpress.org/) - A blogging platform and CMS.
|
|
|
152
|
+* [Kirby](https://getkirby.com/) - A flat-file CMS that adapts to any project.
|
|
|
153
|
+* [Magento](https://business.adobe.com/products/magento/magento-commerce.html) - The most popular ecommerce platform.
|
|
147
|
154
|
* [Moodle](https://moodle.org/) - An open-source learning platform.
|
|
|
155
|
+* [Pico CMS](https://picocms.org/) - A stupidly simple, blazing fast, flat file CMS.
|
|
|
156
|
+* [Statamic](https://statamic.com/) - Build beautiful, easy to manage websites.
|
|
|
157
|
+* [WordPress](https://wordpress.org/) - A blogging platform and CMS.
|
|
148
|
158
|
|
|
149
|
159
|
### Components
|
|
150
|
160
|
*Standalone components from web development frameworks and development groups.*
|
|
151
|
161
|
|
|
152
|
|
-* [Aura](http://auraphp.com/) - Independent components, fully decoupled from each other and from any framework.
|
|
|
162
|
+* [Aura](https://auraphp.com/) - Independent components, fully decoupled from each other and from any framework.
|
|
153
|
163
|
* [CakePHP Plugins](https://plugins.cakephp.org/) - A directory of CakePHP plugins.
|
|
154
|
|
-* [Hoa Project](https://hoa-project.net/En/) - Another package of PHP components.
|
|
|
164
|
+* [Laravel Components](https://github.com/illuminate) - The Laravel Framework components.
|
|
155
|
165
|
* [League of Extraordinary Packages](https://thephpleague.com/) - A PHP package development group.
|
|
156
|
|
-* [Spatie Open Source](https://spatie.be/open-source/packages) - A collection of open source PHP and Laravel packages.
|
|
157
|
|
-* [Symfony Components](https://symfony.com/doc/master/components/index.html) - The components that make Symfony.
|
|
158
|
|
-* [Zend Framework Components](https://docs.zendframework.com/) - The components that make Zend Framework.
|
|
|
166
|
+* [Spatie Open Source](https://spatie.be/open-source) - A collection of open source PHP and Laravel packages.
|
|
|
167
|
+* [Symfony Components](https://symfony.com/components) - The components that make Symfony.
|
|
|
168
|
+* [Laminas Components](https://docs.laminas.dev/components/) - The components that make the Laminas Framework.
|
|
159
|
169
|
|
|
160
|
170
|
### Micro Frameworks
|
|
161
|
171
|
*Micro frameworks and routers.*
|
|
162
|
172
|
|
|
163
|
|
-* [Bullet PHP](http://bulletphp.com/) - A micro framework for building REST APIs.
|
|
164
|
|
-* [Lumen](https://lumen.laravel.com) - A micro-framework by Laravel.
|
|
|
173
|
+* [Laravel-Zero](https://laravel-zero.com) - A micro-framework for console applications.
|
|
|
174
|
+* [Lumen](https://lumen.laravel.com/) - A micro-framework by Laravel.
|
|
|
175
|
+* [Mezzio](https://getexpressive.org/) - A micro-framework by Laminas.
|
|
165
|
176
|
* [Radar](https://github.com/radarphp/Radar.Adr) - An Action-Domain-Responder implementation for PHP.
|
|
|
177
|
+* [Silly](https://github.com/mnapoli/silly) - A micro-framework for CLI applications.
|
|
166
|
178
|
* [Slim](https://www.slimframework.com/) - Another simple micro framework.
|
|
167
|
|
-* [Expressive](https://getexpressive.org/) - A micro-framework by Zend.
|
|
168
|
179
|
|
|
169
|
180
|
### Micro Framework Extras
|
|
170
|
181
|
*Extras related to micro frameworks and routers.*
|
|
171
|
182
|
|
|
172
|
|
-* [Silex Skeleton](https://github.com/silexphp/Silex-Skeleton) - A project skeleton for Silex.
|
|
173
|
|
-* [Silex Web Profiler](https://github.com/silexphp/Silex-WebProfiler) - A web debug toolbar for Silex.
|
|
174
|
183
|
* [Slim Skeleton](https://github.com/slimphp/Slim-Skeleton) - A skeleton for Slim.
|
|
175
|
184
|
* [Slim Twig View](https://github.com/slimphp/Slim-Views) - Integrate Twig into Slim.
|
|
176
|
185
|
* [Slim PHP View](https://github.com/slimphp/PHP-View) - A simple PHP renderer for Slim.
|
|
|
@@ -187,20 +196,19 @@ Please see [CONTRIBUTING](https://github.com/ziadoz/awesome-php/blob/master/CONT
|
|
187
|
196
|
### Templating
|
|
188
|
197
|
*Libraries and tools for templating and lexing.*
|
|
189
|
198
|
|
|
190
|
|
-* [Aura.View](https://github.com/auraphp/Aura.View) - Provides TemplateView and TwoStepView using PHP as the tempting language, with support for partials, sections, and helpers.
|
|
191
|
|
-* [Foil](https://github.com/FoilPHP/Foil) - Another native PHP templating library.
|
|
|
199
|
+* [Latte](https://latte.nette.org/) - The safest and truly intuitive templates for PHP.
|
|
192
|
200
|
* [MtHaml](https://github.com/arnaud-lb/MtHaml) - A PHP implementation of the HAML template language.
|
|
193
|
201
|
* [Mustache](https://github.com/bobthecow/mustache.php) - A PHP implementation of the Mustache template language.
|
|
194
|
202
|
* [PHPTAL](https://phptal.org/) - A PHP implementation of the [TAL](https://en.wikipedia.org/wiki/Template_Attribute_Language) templating language.
|
|
195
|
203
|
* [Plates](http://platesphp.com/) - A native PHP templating library.
|
|
196
|
204
|
* [Smarty](https://www.smarty.net/) - A template engine to complement PHP.
|
|
197
|
205
|
* [Twig](https://twig.symfony.com/) - A comprehensive templating language.
|
|
198
|
|
-* [Tale Jade](https://github.com/Talesoft/tale-jade) - A PHP implementation of the Jade template language.
|
|
199
|
206
|
|
|
200
|
207
|
### Static Site Generators
|
|
201
|
208
|
*Tools for pre-processing content to generate web pages.*
|
|
202
|
209
|
|
|
203
|
210
|
* [Couscous](http://couscous.io) - Couscous turns Markdown documentation into beautiful websites. It's GitHub Pages on steroids.
|
|
|
211
|
+* [Jigsaw](https://jigsaw.tighten.com/) - Simple static sites with Laravel's Blade.
|
|
204
|
212
|
* [Sculpin](https://sculpin.io) - A tool that converts Markdown and Twig into static HTML.
|
|
205
|
213
|
* [Spress](http://spress.yosymfony.com) - An extensible tool that converts Markdown and Twig into HTML.
|
|
206
|
214
|
|
|
|
@@ -210,15 +218,18 @@ Please see [CONTRIBUTING](https://github.com/ziadoz/awesome-php/blob/master/CONT
|
|
210
|
218
|
* [Buzz](https://github.com/kriswallsmith/Buzz) - Another HTTP client.
|
|
211
|
219
|
* [Guzzle]( https://github.com/guzzle/guzzle) - A comprehensive HTTP client.
|
|
212
|
220
|
* [HTTPlug](http://httplug.io) - An HTTP client abstraction without binding to a specific implementation.
|
|
|
221
|
+* [Nyholm PSR-7](https://github.com/Nyholm/psr7) - A super lightweight PSR-7 implementation. Very strict and very fast.
|
|
213
|
222
|
* [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.
|
|
|
223
|
+* [Requests](https://github.com/WordPress/Requests) - A simple HTTP library.
|
|
215
|
224
|
* [Retrofit](https://github.com/tebru/retrofit-php) - A library to ease creation of REST API clients.
|
|
216
|
225
|
* [Symfony HTTP Client](https://github.com/symfony/http-client) - A component to fetch HTTP resources synchronously or asynchronously.
|
|
217
|
|
-* [zend-diactoros](https://github.com/zendframework/zend-diactoros) - PSR-7 HTTP Message implementation.
|
|
|
226
|
+* [Laminas Diactoros](https://github.com/laminas/laminas-diactoros) - PSR-7 HTTP Message implementation.
|
|
218
|
227
|
|
|
219
|
228
|
### Scraping
|
|
220
|
229
|
*Libraries for scraping websites.*
|
|
221
|
230
|
|
|
|
231
|
+* [Chrome PHP](https://github.com/chrome-php/chrome) - Instrument headless Chrome/Chromium instances from PHP.
|
|
|
232
|
+* [DiDOM](https://github.com/Imangazaliev/DiDOM) - A super fast HTML scrapper and parser.
|
|
222
|
233
|
* [Embed](https://github.com/oscarotero/Embed) - An information extractor from any web service or page.
|
|
223
|
234
|
* [Goutte](https://github.com/FriendsOfPHP/Goutte) - A simple web scraper.
|
|
224
|
235
|
* [Symfony Panther](https://github.com/symfony/panther) - A browser testing and web crawling library for PHP and Symfony.
|
|
|
@@ -227,11 +238,10 @@ Please see [CONTRIBUTING](https://github.com/ziadoz/awesome-php/blob/master/CONT
|
|
227
|
238
|
### Middlewares
|
|
228
|
239
|
*Libraries for building application using middlewares.*
|
|
229
|
240
|
|
|
230
|
|
-* [Expressive](https://zendframework.github.io/zend-expressive/) - PSR-7 Middleware framework from Zend.
|
|
231
|
|
-* [PSR7-Middlewares](https://github.com/oscarotero/psr7-middlewares) - Inspiring collection of handy middlewares.
|
|
|
241
|
+* [PSR-7 Middlewares](https://github.com/oscarotero/psr7-middlewares) - Inspiring collection of handy middlewares.
|
|
232
|
242
|
* [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 Silex/Symfony.
|
|
234
|
|
-* [zend-stratigility](https://github.com/zendframework/zend-stratigility) - Middleware for PHP built on top of PSR-7.
|
|
|
243
|
+* [Stack](https://github.com/stackphp) - A library of stackable middleware for Symfony.
|
|
|
244
|
+* [Laminas Stratigility](https://github.com/laminas/laminas-stratigility) - Middleware for PHP built on top of PSR-7.
|
|
235
|
245
|
|
|
236
|
246
|
### URL
|
|
237
|
247
|
*Libraries for parsing URLs.*
|
|
|
@@ -250,22 +260,24 @@ Please see [CONTRIBUTING](https://github.com/ziadoz/awesome-php/blob/master/CONT
|
|
250
|
260
|
* [Fetch](https://github.com/tedious/Fetch) - An IMAP library.
|
|
251
|
261
|
* [Mautic](https://github.com/mautic/mautic) - Email marketing automation
|
|
252
|
262
|
* [PHPMailer](https://github.com/PHPMailer/PHPMailer) - Another mailer solution.
|
|
253
|
|
-* [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://www.mandrill.com).
|
|
|
263
|
+* [PHP IMAP](https://github.com/barbushin/php-imap) - A library to access mailboxes via POP3, IMAP and NNTP.
|
|
|
264
|
+* [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 [MailChimp](https://mailchimp.com/features/transactional-email/).
|
|
254
|
265
|
* [SwiftMailer](https://swiftmailer.symfony.com) - A mailer solution.
|
|
|
266
|
+* [Symfony Mailer](https://github.com/symfony/mailer) - A powerful library for creating and sending emails.
|
|
255
|
267
|
|
|
256
|
268
|
### Files
|
|
257
|
269
|
*Libraries for file manipulation and MIME type detection.*
|
|
258
|
270
|
|
|
259
|
271
|
* [CSV](https://github.com/thephpleague/csv) - A CSV data manipulation library.
|
|
260
|
|
-* [Flysystem](https://github.com/thephpleague/Flysystem) - Another filesystem abstraction layer.
|
|
|
272
|
+* [Flysystem](https://github.com/thephpleague/Flysystem) - Abstraction for local and remote filesystems.
|
|
261
|
273
|
* [Gaufrette](https://github.com/KnpLabs/Gaufrette) - A filesystem abstraction layer.
|
|
262
|
|
-* [Hoa Mime](https://github.com/hoaproject/Mime) - Another MIME detection library.
|
|
263
|
274
|
* [PHP FFmpeg](https://github.com/PHP-FFmpeg/PHP-FFmpeg/) - A wrapper for the [FFmpeg](https://www.ffmpeg.org/) video library.
|
|
264
|
275
|
* [UnifiedArchive](https://github.com/wapmorgan/UnifiedArchive) - A unified reader and writer of compressed archives.
|
|
265
|
276
|
|
|
266
|
277
|
### Streams
|
|
267
|
278
|
*Libraries for working with streams.*
|
|
268
|
279
|
|
|
|
280
|
+* [ByteStream](https://amphp.org/byte-stream/) - An asynchronous stream abstraction.
|
|
269
|
281
|
* [Streamer](https://github.com/fzaninotto/Streamer) - A simple object-orientated stream wrapper library.
|
|
270
|
282
|
|
|
271
|
283
|
### Dependency Injection
|
|
|
@@ -276,9 +288,9 @@ Please see [CONTRIBUTING](https://github.com/ziadoz/awesome-php/blob/master/CONT
|
|
276
|
288
|
* [Auryn](https://github.com/rdlowrey/Auryn) - A recursive dependency injector.
|
|
277
|
289
|
* [Container](https://github.com/thephpleague/container) - Another flexible dependency injection container.
|
|
278
|
290
|
* [Disco](https://github.com/bitExpert/disco) - A PSR-11 compatible, annotation-based dependency injection container.
|
|
279
|
|
-* [PHP-DI](http://php-di.org/) - A dependency injection container that supports autowiring.
|
|
|
291
|
+* [PHP-DI](https://php-di.org/) - A dependency injection container that supports autowiring.
|
|
280
|
292
|
* [Pimple](https://pimple.symfony.com/) - A tiny dependency injection container.
|
|
281
|
|
-* [Symfony DI](https://github.com/symfony/dependency-injection) - A dependency injection container component (SF).
|
|
|
293
|
+* [Symfony DI](https://github.com/symfony/dependency-injection) - A dependency injection container component.
|
|
282
|
294
|
|
|
283
|
295
|
### Imagery
|
|
284
|
296
|
*Libraries for manipulating images.*
|
|
|
@@ -297,18 +309,22 @@ Please see [CONTRIBUTING](https://github.com/ziadoz/awesome-php/blob/master/CONT
|
|
297
|
309
|
* [Alice](https://github.com/nelmio/alice) - An expressive fixture generation library.
|
|
298
|
310
|
* [AspectMock](https://github.com/Codeception/AspectMock) - A mocking framework for PHPUnit/Codeception.
|
|
299
|
311
|
* [Atoum](https://github.com/atoum/atoum) - A simple testing library.
|
|
300
|
|
-* [Behat](http://docs.behat.org/en/v2.5/) - A behaviour driven development (BDD) testing framework.
|
|
|
312
|
+* [Behat](https://docs.behat.org/en/latest/) - A behaviour driven development (BDD) testing framework.
|
|
301
|
313
|
* [Codeception](https://github.com/Codeception/Codeception) - A full stack testing framework.
|
|
302
|
|
-* [Faker](https://github.com/fzaninotto/Faker) - A fake data generator library.
|
|
|
314
|
+* [Faker](https://github.com/fakerphp/faker) - A fake data generator library.
|
|
|
315
|
+* [Foundry](https://github.com/zenstruck/foundry) - A fixture factory generation library for Doctrine.
|
|
303
|
316
|
* [HTTP Mock](https://github.com/InterNations/http-mock) - A library for mocking HTTP requests in unit tests.
|
|
|
317
|
+* [Infection](https://github.com/infection/infection) - An AST-based PHP Mutation testing framework.
|
|
304
|
318
|
* [Kahlan](https://github.com/kahlan/kahlan) - Full stack Unit/BDD testing framework with built-in stub, mock and code-coverage support.
|
|
305
|
|
-* [Mink](http://mink.behat.org/en/latest/) - Web acceptance testing.
|
|
|
319
|
+* [Mink](https://mink.behat.org/en/latest/) - Web acceptance testing.
|
|
306
|
320
|
* [Mockery](https://github.com/mockery/mockery) - A mock object library for testing.
|
|
307
|
321
|
* [ParaTest](https://github.com/paratestphp/paratest) - A parallel testing library for PHPUnit.
|
|
|
322
|
+* [Pest](https://pestphp.com/) - A testing framework with a focus on simplicity.
|
|
308
|
323
|
* [Peridot](https://github.com/peridot-php/peridot) - An event driven test framework.
|
|
309
|
|
-* [Phake](https://github.com/mlively/Phake) - Another mock object library for testing.
|
|
|
324
|
+* [Phake](https://github.com/phake/phake) - Another mock object library for testing.
|
|
310
|
325
|
* [Pho](https://github.com/danielstjules/pho) - Another behaviour driven development testing framework.
|
|
311
|
326
|
* [PHP-Mock](https://github.com/php-mock/php-mock) - A mock library for built-in PHP functions (e.g. time()).
|
|
|
327
|
+* [PHP MySQL Engine](https://github.com/vimeo/php-mysql-engine) - A MySQL engine written in pure PHP.
|
|
312
|
328
|
* [PHPSpec](https://github.com/phpspec/phpspec) - A design by specification unit testing library.
|
|
313
|
329
|
* [PHPT](https://qa.php.net/write-test.php) - A test tool used by PHP itself.
|
|
314
|
330
|
* [PHPUnit](https://github.com/sebastianbergmann/phpunit) - A unit testing framework.
|
|
|
@@ -319,12 +335,12 @@ Please see [CONTRIBUTING](https://github.com/ziadoz/awesome-php/blob/master/CONT
|
|
319
|
335
|
*Libraries and applications for continuous integration.*
|
|
320
|
336
|
|
|
321
|
337
|
* [CircleCI](https://circleci.com) - A continuous integration platform.
|
|
322
|
|
-* [GitlabCi](https://about.gitlab.com/product/continuous-integration/) - Let GitLab CI test, build, deploy your code. TravisCi like.
|
|
323
|
|
-* [Jenkins](https://jenkins.io/index.html) - A continuous integration platform with [PHP support](http://jenkins-php.org/index.html).
|
|
|
338
|
+* [GitlabCi](https://about.gitlab.com/stages-devops-lifecycle/continuous-integration/) - Let GitLab CI test, build, deploy your code. TravisCi like.
|
|
|
339
|
+* [Jenkins](https://www.jenkins.io/) - A continuous integration platform with [PHP support](https://www.jenkins.io/solutions/php/).
|
|
324
|
340
|
* [JoliCi](https://github.com/jolicode/JoliCi) - A continuous integration client written in PHP and powered by Docker.
|
|
325
|
341
|
* [PHPCI](https://github.com/dancryer/phpci) - An open source continuous integration platform for PHP.
|
|
326
|
342
|
* [SemaphoreCI](https://semaphoreci.com/) - A continuous integration platform for open source and private projects.
|
|
327
|
|
-* [Shippable](https://www.shippable.com/) - A Docker based continious integration platform for open source and private projects.
|
|
|
343
|
+* [Shippable](https://jfrog.com/blog/weve-acquired-shippable-to-complete-devops-pipeline-automation-from-code-to-production/) - A Docker based continious integration platform for open source and private projects.
|
|
328
|
344
|
* [Travis CI](https://travis-ci.org/) - A continuous integration platform.
|
|
329
|
345
|
* [Setup PHP](https://github.com/shivammathur/setup-php) - A GitHub Action for PHP.
|
|
330
|
346
|
|
|
|
@@ -332,27 +348,28 @@ Please see [CONTRIBUTING](https://github.com/ziadoz/awesome-php/blob/master/CONT
|
|
332
|
348
|
*Libraries for generating project documentation.*
|
|
333
|
349
|
|
|
334
|
350
|
* [APIGen](https://github.com/apigen/apigen) - Another API documentation generator.
|
|
335
|
|
-* [daux.io](https://github.com/justinwalsh/daux.io) - A documentation generator which uses Markdown files.
|
|
|
351
|
+* [daux.io](https://github.com/dauxio/daux.io) - A documentation generator which uses Markdown files.
|
|
336
|
352
|
* [PHP Documentor 2](https://github.com/phpDocumentor/phpDocumentor) - A documentation generator.
|
|
337
|
|
-* [phpDox](http://phpdox.de/) - A documentation generator for PHP projects (that is not limited to API documentation).
|
|
338
|
|
-* [Sami](https://github.com/FriendsOfPHP/Sami) - An API documentation generator.
|
|
|
353
|
+* [phpDox](https://phpdox.net/) - A documentation generator for PHP projects (that is not limited to API documentation).
|
|
339
|
354
|
|
|
340
|
355
|
### Security
|
|
341
|
|
-*Libraries for generating secure random numbers, encrypting data and scanning for vulnerabilities.*
|
|
|
356
|
+*Libraries for generating secure random numbers, encrypting data and scanning and testing for vulnerabilities.*
|
|
342
|
357
|
|
|
343
|
358
|
* [Halite](https://paragonie.com/project/halite) - A simple library for encryption using [libsodium](https://github.com/jedisct1/libsodium).
|
|
344
|
359
|
* [HTML Purifier](https://github.com/ezyang/htmlpurifier) - A standards compliant HTML filter.
|
|
345
|
360
|
* [IniScan](https://github.com/psecio/iniscan) - A tool that scans PHP INI files for security.
|
|
346
|
361
|
* [Optimus](https://github.com/jenssegers/optimus) - Id obfuscation based on Knuth's multiplicative hashing method.
|
|
|
362
|
+* [PHPGGC](https://github.com/ambionics/phpggc) - A library of PHP unserializable payloads along with a tool to generate them.
|
|
347
|
363
|
* [PHP Encryption](https://github.com/defuse/php-encryption) - Secure PHP Encryption Library.
|
|
348
|
364
|
* [PHP SSH](https://github.com/Herzult/php-ssh) - An experimental object orientated SSH wrapper library.
|
|
349
|
365
|
* [PHPSecLib](http://phpseclib.sourceforge.net/) - A pure PHP secure communications library.
|
|
350
|
366
|
* [random_compat](https://github.com/paragonie/random_compat) - PHP 5.x support for `random_bytes()` and `random_int()`
|
|
351
|
367
|
* [RandomLib](https://github.com/ircmaxell/RandomLib) - A library for generating random numbers and strings.
|
|
352
|
368
|
* [Symfony Security Monitoring](https://security.symfony.com/) - A web tool to check your Composer dependencies for security advisories, previously known as "SensioLabs Security Check".
|
|
|
369
|
+* [SQLMap](https://github.com/sqlmapproject/sqlmap) - An automatic SQL injection and database takeover tool.
|
|
353
|
370
|
* [TCrypto](https://github.com/timoh6/TCrypto) - A simple encrypted key-value storage library.
|
|
354
|
371
|
* [VAddy](https://vaddy.net/) - A continuous security testing platform for web applications.
|
|
355
|
|
-* [Zed](https://www.owasp.org/index.php/OWASP_Zed_Attack_Proxy_Project) - An integrated penetration testing tool for web applications.
|
|
|
372
|
+* [Zap](https://owasp.org/www-project-zap/) - An integrated penetration testing tool for web applications.
|
|
356
|
373
|
|
|
357
|
374
|
### Passwords
|
|
358
|
375
|
*Libraries and tools for working with and storing passwords.*
|
|
|
@@ -371,17 +388,21 @@ Please see [CONTRIBUTING](https://github.com/ziadoz/awesome-php/blob/master/CONT
|
|
371
|
388
|
|
|
372
|
389
|
* [Better Reflection](https://github.com/Roave/BetterReflection) - AST-based reflection library that allows analysis and manipulation of code
|
|
373
|
390
|
* [Code Climate](https://codeclimate.com) - An automated code review.
|
|
|
391
|
+* [GrumPHP](https://github.com/phpro/grumphp) - A PHP code-quality tool.
|
|
374
|
392
|
* [PHP Parser](https://github.com/nikic/PHP-Parser) - A PHP parser written in PHP.
|
|
375
|
393
|
* [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.
|
|
|
394
|
+* [Phpactor](https://github.com/phpactor/phpactor) - PHP completion, refactoring and introspection tool.
|
|
376
|
395
|
* [PHPLOC](https://github.com/sebastianbergmann/phploc) - A tool for quickly measuring the size of a PHP project.
|
|
377
|
396
|
* [PHPQA](https://github.com/EdgedesignCZ/phpqa) - A tool for running QA tools (phploc, phpcpd, phpcs, pdepend, phpmd, phpmetrics).
|
|
378
|
397
|
* [Qafoo Quality Analyzer](https://github.com/Qafoo/QualityAnalyzer) - A tool to visualize metrics and source code.
|
|
|
398
|
+* [Rector](https://github.com/rectorphp/rector) - A tool to upgrade and refactor code.
|
|
379
|
399
|
* [Scrutinizer](https://scrutinizer-ci.com/) - A web tool to [scrutinise PHP code](https://github.com/scrutinizer-ci/php-analyzer).
|
|
380
|
400
|
* [UBench](https://github.com/devster/ubench) - A simple micro benchmark library.
|
|
381
|
401
|
|
|
382
|
402
|
### Code Quality
|
|
383
|
403
|
*Libraries for managing code quality, formatting and linting.*
|
|
384
|
404
|
|
|
|
405
|
+* [CaptainHook](https://github.com/captainhookphp/captainhook) - An easy-to-use and flexible Git hook library.
|
|
385
|
406
|
* [PHP CodeSniffer](https://github.com/squizlabs/PHP_CodeSniffer) - A library that detects PHP, CSS and JS coding standard violations.
|
|
386
|
407
|
* [PHP CS Fixer](https://github.com/FriendsOfPHP/PHP-CS-Fixer) - A coding standards fixer library.
|
|
387
|
408
|
* [PHP Mess Detector](https://github.com/phpmd/phpmd) - A library that scans code for bugs, sub-optimal code, unused parameters and more.
|
|
|
@@ -392,7 +413,7 @@ Please see [CONTRIBUTING](https://github.com/ziadoz/awesome-php/blob/master/CONT
|
|
392
|
413
|
*Libraries for performing static analysis of PHP code.*
|
|
393
|
414
|
|
|
394
|
415
|
* [Exakat](https://github.com/exakat/exakat) - A static analysis engine for PHP.
|
|
395
|
|
-* [Deptrac](https://github.com/sensiolabs-de/deptrac) - A static code analysis tool that helps to enforce rules for dependencies between software layers.
|
|
|
416
|
+* [Deptrac](https://github.com/qossmic/deptrac) - A static code analysis tool that helps to enforce rules for dependencies between software layers.
|
|
396
|
417
|
* [Mondrian](https://github.com/Trismegiste/Mondrian) - A code analysis tool using Graph Theory.
|
|
397
|
418
|
* [phan](https://github.com/phan/phan) - A static analyzer based on PHP 7+ and the php-ast extension.
|
|
398
|
419
|
* [PHP Architecture Tester](https://github.com/carlosas/phpat) - Easy to use architecture testing tool for PHP.
|
|
|
@@ -406,27 +427,32 @@ Please see [CONTRIBUTING](https://github.com/ziadoz/awesome-php/blob/master/CONT
|
|
406
|
427
|
### Architectural
|
|
407
|
428
|
*Libraries related to design patterns, programming approaches and ways to organize code.*
|
|
408
|
429
|
|
|
409
|
|
-* [Design Patterns PHP](https://github.com/domnikl/DesignPatternsPHP) - A repository of software patterns implemented in PHP.
|
|
|
430
|
+* [Design Patterns PHP](https://github.com/DesignPatternsPHP/DesignPatternsPHP ) - A repository of software patterns implemented in PHP.
|
|
410
|
431
|
* [Finite](https://yohan.giarel.li/Finite/) - A simple PHP finite state machine.
|
|
411
|
432
|
* [Functional PHP](https://github.com/lstrojny/functional-php) - A functional programming library.
|
|
412
|
433
|
* [Iter](https://github.com/nikic/iter) - A library that provides iteration primitives using generators.
|
|
413
|
|
-* [Patchwork](http://patchwork2.org/) - A library for redefining userland functions.
|
|
|
434
|
+* [Patchwork](https://patchwork2.org/) - A library for redefining userland functions.
|
|
414
|
435
|
* [Pipeline](https://github.com/thephpleague/pipeline) - A pipeline pattern implementation.
|
|
|
436
|
+* [Porter](https://github.com/ScriptFUSION/Porter) - Data import abstraction library for consuming Web APIs and other data sources.
|
|
415
|
437
|
* [RulerZ](https://github.com/K-Phoen/rulerz) - A powerful rule engine and implementation of the Specification pattern.
|
|
416
|
438
|
|
|
417
|
439
|
### Debugging and Profiling
|
|
418
|
|
-*Libraries and tools for debugging and profiling code.*
|
|
|
440
|
+*Libraries and tools for debugging errors and profiling code.*
|
|
419
|
441
|
|
|
420
|
442
|
* [APM](https://pecl.php.net/package/APM) - Monitoring extension collecting errors and statistics into SQLite/MySQL/StatsD.
|
|
421
|
443
|
* [Barbushin PHP Console](https://github.com/barbushin/php-console) - Another web debugging console using Google Chrome.
|
|
422
|
|
-* [Blackfire.io](https://blackfire.io) - A low-overhead code profiler.
|
|
|
444
|
+* [Blackfire.io](https://www.blackfire.io) - A low-overhead code profiler.
|
|
423
|
445
|
* [Kint](https://github.com/kint-php/kint) - A debugging and profiling tool.
|
|
|
446
|
+* [Metrics](https://github.com/beberlei/metrics) - A simple metrics API library.
|
|
|
447
|
+* [PCOV](https://github.com/krakjoe/pcov) - A self contained code coverage compatible driver.
|
|
424
|
448
|
* [PHP Console](https://github.com/Seldaek/php-console) - A web debugging console.
|
|
425
|
449
|
* [PHP Debug Bar](http://phpdebugbar.com/) - A debugging toolbar.
|
|
426
|
450
|
* [PHPBench](https://github.com/phpbench/phpbench) - A benchmarking Framework.
|
|
427
|
451
|
* [PHPSpy](https://github.com/adsr/phpspy) - A low-overhead sampling profiler.
|
|
|
452
|
+* [Symfony VarDumper](https://github.com/symfony/var-dumper) - A variable dumper component.
|
|
428
|
453
|
* [Tideways.io](https://tideways.com/) - Monitoring and profiling tool.
|
|
429
|
454
|
* [Tracy](https://github.com/nette/tracy) - A simple error detection, logging and time measuring library.
|
|
|
455
|
+* [Whoops](https://github.com/filp/whoops) - A pretty error handling library.
|
|
430
|
456
|
* [xDebug](https://github.com/xdebug/xdebug) - A debug and profile tool for PHP.
|
|
431
|
457
|
* [XHProf](https://github.com/phacility/xhprof) - A profiling tool originally developed by Facebook.
|
|
432
|
458
|
* [Z-Ray](https://www.zend.com/products/z-ray) - A debug and profile tool for Zend Server.
|
|
|
@@ -434,9 +460,10 @@ Please see [CONTRIBUTING](https://github.com/ziadoz/awesome-php/blob/master/CONT
|
|
434
|
460
|
### Build Tools
|
|
435
|
461
|
*Project build and automation tools.*
|
|
436
|
462
|
|
|
437
|
|
-* [Box](https://github.com/humbug/box) - A utility to build PHAR files.
|
|
|
463
|
+* [Box](https://github.com/box-project/box) - A utility to build PHAR files.
|
|
438
|
464
|
* [Construct](https://github.com/jonathantorres/construct) - A PHP project/micro-package generator.
|
|
439
|
465
|
* [Phing](https://www.phing.info/) - A PHP project build system inspired by Apache Ant.
|
|
|
466
|
+* [RMT](https://github.com/liip/RMT) - A library for versioning and releasing software.
|
|
440
|
467
|
|
|
441
|
468
|
### Task Runners
|
|
442
|
469
|
*Libraries for automating and running tasks.*
|
|
|
@@ -456,13 +483,14 @@ Please see [CONTRIBUTING](https://github.com/ziadoz/awesome-php/blob/master/CONT
|
|
456
|
483
|
*Tools for managing, compressing and minifying website assets.*
|
|
457
|
484
|
|
|
458
|
485
|
* [JShrink](https://github.com/tedious/JShrink) - A JavaScript minifier library.
|
|
459
|
|
-* [Munee](https://github.com/meenie/munee) - An asset optimiser library.
|
|
460
|
|
-* [Puli](https://github.com/puli/repository) - A library for determining assets absolute paths.
|
|
461
|
|
-* [BowerPHP](https://github.com/Bee-Lab/bowerphp) - A PHP implementation of Bower. A package manager for the web
|
|
|
486
|
+* [Laravel Mix](https://github.com/laravel-mix/laravel-mix ) - An elegant wrapper around Webpack for the 80% use case.
|
|
|
487
|
+* [Symfony Asset](https://github.com/symfony/asset) - Manages URL generation and versioning of web assets.
|
|
|
488
|
+* [Symfony Encore](https://github.com/symfony/webpack-encore) - A simple but powerful API for processing and compiling assets built around Webpack.
|
|
462
|
489
|
|
|
463
|
490
|
### Geolocation
|
|
464
|
491
|
*Libraries for geocoding addresses and working with latitudes and longitudes.*
|
|
465
|
492
|
|
|
|
493
|
+* [Country List](https://github.com/umpirsky/country-list) - A list of all countries with names and ISO 3166-1 codes.
|
|
466
|
494
|
* [GeoCoder](https://geocoder-php.org/) - A geocoding library.
|
|
467
|
495
|
* [GeoJSON](https://github.com/jmikola/geojson) - A GeoJSON implementation.
|
|
468
|
496
|
* [GeoTools](https://github.com/thephpleague/geotools) - A library of geo-related tools.
|
|
|
@@ -481,16 +509,15 @@ Please see [CONTRIBUTING](https://github.com/ziadoz/awesome-php/blob/master/CONT
|
|
481
|
509
|
*Libraries that are event-driven or implement non-blocking event loops.*
|
|
482
|
510
|
* [Amp](https://github.com/amphp/amp) - An event driven non-blocking I/O library.
|
|
483
|
511
|
* [Broadway](https://github.com/broadway/broadway) - An event source and CQRS library.
|
|
484
|
|
-* [Cake Event](https://github.com/cakephp/event) - An event dispatcher library (CP).
|
|
|
512
|
+* [CakePHP Event](https://github.com/cakephp/event) - An event dispatcher library.
|
|
485
|
513
|
* [Elephant.io](https://github.com/Wisembly/Elephant.io) - Yet another web socket library.
|
|
486
|
514
|
* [Evenement](https://github.com/igorw/evenement) - An event dispatcher library.
|
|
487
|
515
|
* [Event](https://github.com/thephpleague/event) - An event library with a focus on domain events.
|
|
488
|
|
-* [Hoa EventSource](https://github.com/hoaproject/Eventsource) - An event source library.
|
|
489
|
|
-* [Hoa WebSocket](https://github.com/hoaproject/Websocket) - Another web socket library.
|
|
|
516
|
+* [Pawl](https://github.com/ratchetphp/Pawl) - An asynchronous web socket client.
|
|
490
|
517
|
* [Prooph Event Store](https://github.com/prooph/event-store) - An event source component to persist event messages
|
|
491
|
518
|
* [PHP Defer](https://github.com/php-defer/php-defer) - Golang's defer statement for PHP.
|
|
492
|
519
|
* [Ratchet](https://github.com/ratchetphp/Ratchet) - A web socket library.
|
|
493
|
|
-* [React](https://github.com/reactphp/reactphp) - An event driven non-blocking I/O library.
|
|
|
520
|
+* [ReactPHP](https://github.com/reactphp/reactphp) - An event driven non-blocking I/O library.
|
|
494
|
521
|
* [RxPHP](https://github.com/ReactiveX/RxPHP) - A reactive extension library.
|
|
495
|
522
|
* [Swoole](https://github.com/swoole/swoole-src) - An event-driven asynchronous and concurrent networking communication framework with high performance for PHP written in C.
|
|
496
|
523
|
* [Workerman](https://github.com/walkor/Workerman) - An event driven non-blocking I/O library.
|
|
|
@@ -504,6 +531,7 @@ Please see [CONTRIBUTING](https://github.com/ziadoz/awesome-php/blob/master/CONT
|
|
504
|
531
|
*Libraries and applications for taking payments and building online e-commerce stores.*
|
|
505
|
532
|
|
|
506
|
533
|
* [Money](https://github.com/moneyphp/money) - A PHP implementation of Fowler's money pattern.
|
|
|
534
|
+* [Brick\Money](https://github.com/brick/money) - A money library for PHP, with support for contexts, cash roundings, currency conversion.
|
|
507
|
535
|
* [OmniPay](https://github.com/thephpleague/omnipay) - A framework agnostic multi-gateway payment processing library.
|
|
508
|
536
|
* [Payum](https://github.com/payum/payum) - A payment abstraction library.
|
|
509
|
537
|
* [Shopware](https://github.com/shopware/shopware) - Highly customizable e-commerce software
|
|
|
@@ -533,13 +561,15 @@ Please see [CONTRIBUTING](https://github.com/ziadoz/awesome-php/blob/master/CONT
|
|
533
|
561
|
* [Aura.Sql](https://github.com/auraphp/Aura.Sql) - Provides an extension to the native PDO along with a profiler and connection locator.
|
|
534
|
562
|
* [Aura.SqlQuery](https://github.com/auraphp/Aura.SqlQuery) - Independent query builders for MySQL, PostgreSQL, SQLite, and Microsoft SQL Server.
|
|
535
|
563
|
* [Baum](https://github.com/etrepat/baum) - A nested set implementation for Eloquent.
|
|
536
|
|
-* [Cake ORM](https://github.com/cakephp/orm) - Object-Relational Mapper, implemented using the DataMapper pattern (CP).
|
|
537
|
|
-* [Doctrine Extensions](https://github.com/Atlantic18/DoctrineExtensions) - A collection of Doctrine behavioural extensions.
|
|
|
564
|
+* [CakePHP ORM](https://github.com/cakephp/orm) - Object-Relational Mapper, implemented using the DataMapper pattern.
|
|
|
565
|
+* [Cycle ORM](https://github.com/cycle/orm) - PHP DataMapper, ORM.
|
|
|
566
|
+* [Doctrine Extensions](https://github.com/doctrine-extensions/DoctrineExtensions ) - A collection of Doctrine behavioural extensions.
|
|
538
|
567
|
* [Doctrine](https://www.doctrine-project.org/) - A comprehensive DBAL and ORM.
|
|
539
|
|
-* [Eloquent](https://github.com/illuminate/database) - A simple ORM (L6).
|
|
|
568
|
+* [Laravel Eloquent](https://github.com/illuminate/database) - A simple ORM.
|
|
540
|
569
|
* [Pomm](https://github.com/chanmix51/Pomm) - An Object Model Manager for PostgreSQL.
|
|
541
|
570
|
* [ProxyManager](https://github.com/Ocramius/ProxyManager) - A set of utilities to generate proxy objects for data mappers.
|
|
542
|
571
|
* [RedBean](https://redbeanphp.com/index.php) - A lightweight, configuration-less ORM.
|
|
|
572
|
+* [Slimdump](https://github.com/webfactory/slimdump) - An easy dumper tool for MySQL.
|
|
543
|
573
|
* [Spot2](https://github.com/spotorm/spot2) - A MySQL datamapper ORM.
|
|
544
|
574
|
|
|
545
|
575
|
### Migrations
|
|
|
@@ -555,7 +585,7 @@ Libraries to help manage database schemas and migrations.
|
|
555
|
585
|
*Libraries for working with "NoSQL" backends.*
|
|
556
|
586
|
|
|
557
|
587
|
* [PHPMongo](https://github.com/sokil/php-mongo) - A MongoDB ORM.
|
|
558
|
|
-* [Predis](https://github.com/nrk/predis) - A feature complete Redis library.
|
|
|
588
|
+* [Predis](https://github.com/predis/predis) - A feature complete Redis library.
|
|
559
|
589
|
|
|
560
|
590
|
### Queue
|
|
561
|
591
|
*Libraries for working with event and task queues.*
|
|
|
@@ -566,15 +596,15 @@ Libraries to help manage database schemas and migrations.
|
|
566
|
596
|
* [PHP AMQP](https://github.com/php-amqplib/php-amqplib) - A pure PHP AMQP library.
|
|
567
|
597
|
* [Tarantool Queue](https://github.com/tarantool-php/queue) - PHP bindings for Tarantool Queue.
|
|
568
|
598
|
* [Thumper](https://github.com/php-amqplib/Thumper) - A RabbitMQ pattern library.
|
|
|
599
|
+* [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.
|
|
569
|
600
|
|
|
570
|
601
|
### Search
|
|
571
|
602
|
*Libraries and software for indexing and performing search queries on data.*
|
|
572
|
603
|
|
|
573
|
604
|
* [Elastica](https://github.com/ruflin/Elastica) - A client library for ElasticSearch.
|
|
574
|
605
|
* [ElasticSearch PHP](https://github.com/elastic/elasticsearch-php) - The official client library for [ElasticSearch](https://www.elastic.co/).
|
|
575
|
|
-* [Solarium](https://www.solarium-project.org/) - A client library for [Solr](https://lucene.apache.org/solr/).
|
|
576
|
|
-* [Sphinx Search](https://github.com/ripaclub/sphinxsearch) - Sphinx Search library provides SphinxQL indexing and searching features
|
|
577
|
|
-* [SphinxQL query builder](https://foolcode.github.io/SphinxQL-Query-Builder/) - A query library for the [Sphinx](https://sphinxsearch.com/) search engine.
|
|
|
606
|
+* [Solarium](https://www.solarium-project.org/) - A client library for [Solr](https://solr.apache.org/).
|
|
|
607
|
+* [SphinxQL Query Builder](https://foolcode.github.io/SphinxQL-Query-Builder/) - A query library for the [Sphinx](https://sphinxsearch.com/) and [Manticore](https://manticoresearch.com/) search engines.
|
|
578
|
608
|
|
|
579
|
609
|
### Command Line
|
|
580
|
610
|
*Libraries related to the command line.*
|
|
|
@@ -589,7 +619,6 @@ Libraries to help manage database schemas and migrations.
|
|
589
|
619
|
* [Cron Expression](https://github.com/mtdowling/cron-expression) - A library to calculate cron run dates.
|
|
590
|
620
|
* [GetOpt](https://github.com/getopt-php/getopt-php) - A command line opt parser.
|
|
591
|
621
|
* [GetOptionKit](https://github.com/c9s/GetOptionKit) - Another command line opt parser.
|
|
592
|
|
-* [Hoa Console](https://github.com/hoaproject/Console) - Another command line library.
|
|
593
|
622
|
* [PsySH](https://github.com/bobthecow/psysh) - Another PHP REPL.
|
|
594
|
623
|
* [ShellWrap](https://github.com/MrRio/shellwrap) - A simple command line wrapper library.
|
|
595
|
624
|
|
|
|
@@ -604,22 +633,33 @@ Libraries to help manage database schemas and migrations.
|
|
604
|
633
|
* [OAuth2 Server](https://bshaffer.github.io/oauth2-server-php-docs/) - Another OAuth2 server implementation.
|
|
605
|
634
|
* [OAuth2 Server](https://oauth2.thephpleague.com/) - An OAuth2 authentication server, resource server and client library.
|
|
606
|
635
|
* [Opauth](https://github.com/opauth/opauth) - A multi-provider authentication framework.
|
|
|
636
|
+* [Paseto](https://github.com/paragonie/paseto) - Platform-Agnostic Security Tokens.
|
|
607
|
637
|
* [PHP oAuthLib](https://github.com/Lusitanian/PHPoAuthLib) - Another OAuth library.
|
|
608
|
638
|
* [Sentinel Social](https://cartalyst.com/manual/sentinel-social/2.0) - A library for social network authentication.
|
|
609
|
639
|
* [Sentinel](https://cartalyst.com/manual/sentinel/2.0) - A framework agnostic authentication & authorisation library.
|
|
610
|
640
|
* [TwitterOAuth](https://github.com/abraham/twitteroauth) - A Twitter OAuth library.
|
|
611
|
641
|
|
|
612
|
|
-### Markup
|
|
613
|
|
-*Libraries for working with markup.*
|
|
|
642
|
+### Markup and CSS
|
|
|
643
|
+*Libraries for working with markup and CSS formats.
|
|
614
|
644
|
|
|
615
|
645
|
* [Cebe Markdown](https://github.com/cebe/markdown) - An fast and extensible Markdown parser.
|
|
616
|
646
|
* [CommonMark PHP](https://github.com/thephpleague/commonmark) - Highly-extensible Markdown parser which fully supports the [CommonMark spec](https://spec.commonmark.org/).
|
|
617
|
647
|
* [Decoda](https://github.com/milesj/decoda) - A lightweight markup parser library.
|
|
618
|
|
-* [Emoji](https://github.com/heyupdate/Emoji) - A library that converts unicode characters and names into emoji images.
|
|
|
648
|
+* [Essence](https://github.com/essence/essence) - A library for extracting web media.
|
|
|
649
|
+* [Embera](https://github.com/mpratt/Embera) - An Oembed consumer library.
|
|
619
|
650
|
* [HTML to Markdown](https://github.com/thephpleague/html-to-markdown) - Converts HTML into Markdown.
|
|
620
|
651
|
* [HTML5 PHP](https://github.com/Masterminds/html5-php) - An HTML5 parser and serializer library.
|
|
621
|
652
|
* [Parsedown](https://github.com/erusev/parsedown) - Another Markdown parser.
|
|
|
653
|
+* [PHP CSS Parser](https://github.com/sabberworm/PHP-CSS-Parser) - A Parser for CSS Files written in PHP.
|
|
622
|
654
|
* [PHP Markdown](https://github.com/michelf/php-markdown) - A Markdown parser.
|
|
|
655
|
+* [Shiki PHP](https://github.com/spatie/shiki-php) - A [Shiki](https://github.com/shikijs/shiki) code highlighting package in PHP.
|
|
|
656
|
+* [VObject](https://github.com/sabre-io/vobject) - A library for parsing VCard and iCalendar objects.
|
|
|
657
|
+
|
|
|
658
|
+### JSON
|
|
|
659
|
+*Libraries for working with JSON.*
|
|
|
660
|
+
|
|
|
661
|
+* [JSON Lint](https://github.com/Seldaek/jsonlint) - A JSON lint utility.
|
|
|
662
|
+* [JSONMapper](https://github.com/JsonMapper/JsonMapper) - A library for mapping JSON to PHP objects.
|
|
623
|
663
|
|
|
624
|
664
|
### Strings
|
|
625
|
665
|
*Libraries for parsing and manipulating strings.*
|
|
|
@@ -628,14 +668,14 @@ Libraries to help manage database schemas and migrations.
|
|
628
|
668
|
* [ANSI to HTML5](https://github.com/sensiolabs/ansi-to-html) - An ANSI to HTML5 converter library.
|
|
629
|
669
|
* [Color Jizz](https://github.com/mikeemoo/ColorJizz-PHP) - A library for manipulating and converting colours.
|
|
630
|
670
|
* [Device Detector](https://github.com/matomo-org/device-detector) - Another library for parsing user agent strings.
|
|
631
|
|
-* [Hoa String](https://github.com/hoaproject/Ustring) - Another UTF-8 string library.
|
|
632
|
671
|
* [Jieba-PHP](https://github.com/fukuball/jieba-php) - A PHP port of Python's jieba. Chinese text segmentation for natural language processing.
|
|
633
|
672
|
* [Mobile-Detect](https://github.com/serbanghita/Mobile-Detect) - A lightweight PHP class for detecting mobile devices (including tablets).
|
|
634
|
673
|
* [Patchwork UTF-8](https://github.com/nicolas-grekas/Patchwork-UTF8) - A portable library for working with UTF-8 strings.
|
|
|
674
|
+* [Portable ASCII](https://github.com/voku/portable-ascii) - A library to convert strings to ascii.
|
|
635
|
675
|
* [Portable UTF-8](https://github.com/voku/portable-utf8) - A string manipulation library with UTF-8 safe replacement methods.
|
|
636
|
676
|
* [Slugify](https://github.com/cocur/slugify) - A library to convert strings to slugs.
|
|
637
|
677
|
* [SQL Formatter](https://github.com/jdorn/sql-formatter/) - A library for formatting SQL statements.
|
|
638
|
|
-* [Stringy](https://github.com/danielstjules/Stringy) - A string manipulation library with multibyte support.
|
|
|
678
|
+* [Stringy](https://github.com/voku/Stringy) - A string manipulation library with multibyte support.
|
|
639
|
679
|
* [UA Parser](https://github.com/tobie/ua-parser/tree/master/php) - A library for parsing user agent strings.
|
|
640
|
680
|
* [URLify](https://github.com/jbroadway/urlify) - A PHP port of Django's URLify.js.
|
|
641
|
681
|
* [UUID](https://github.com/ramsey/uuid) - A library for generating UUIDs.
|
|
|
@@ -643,17 +683,21 @@ Libraries to help manage database schemas and migrations.
|
|
643
|
683
|
### Numbers
|
|
644
|
684
|
*Libraries for working with numbers.*
|
|
645
|
685
|
|
|
|
686
|
+* [Brick\Math](https://github.com/brick/math) - A library providing large number support: `BigInteger`, `BigDecimal` and `BigRational`.
|
|
646
|
687
|
* [ByteUnits](https://github.com/gabrielelana/byte-units) - A library to parse, format and convert byte units in binary and metric systems.
|
|
|
688
|
+* [DecimalObject](https://github.com/spryker/decimal-object) - A value object to handle decimals/floats easily and more precisely.
|
|
|
689
|
+* [IP](https://github.com/darsyn/ip) - An immutable value object for working with IPv4 and IPv6 addresses.
|
|
647
|
690
|
* [LibPhoneNumber for PHP](https://github.com/giggsey/libphonenumber-for-php) - A PHP implementation of Google's phone number handling library.
|
|
648
|
691
|
* [PHP Conversion](https://github.com/Crisu83/php-conversion) - Another library for converting between units of measure.
|
|
649
|
692
|
* [PHP Units of Measure](https://github.com/triplepoint/php-units-of-measure) - A library for converting between units of measure.
|
|
|
693
|
+* [MathPHP](https://github.com/markrogoyski/math-php) - A math library for PHP.
|
|
650
|
694
|
|
|
651
|
695
|
### Filtering and Validation
|
|
652
|
696
|
*Libraries for filtering and validating data.*
|
|
653
|
697
|
|
|
654
|
698
|
* [Assert](https://github.com/beberlei/assert) - A validation library with a rich set of assertions. Supports assertion chaining and lazy assertions.
|
|
655
|
699
|
* [Aura.Filter](https://github.com/auraphp/Aura.Filter) - Provides tools to validate and sanitize objects and arrays.
|
|
656
|
|
-* [Cake Validation](https://github.com/cakephp/validation) - Another validation library (CP).
|
|
|
700
|
+* [CakePHP Validation](https://github.com/cakephp/validation) - Another validation library.
|
|
657
|
701
|
* [Filterus](https://github.com/ircmaxell/filterus) - A simple PHP filtering library.
|
|
658
|
702
|
* [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.
|
|
659
|
703
|
* [JSON Schema](https://github.com/justinrainbow/json-schema) - A [JSON Schema](https://json-schema.org/) validation library.
|
|
|
@@ -667,30 +711,31 @@ Libraries to help manage database schemas and migrations.
|
|
667
|
711
|
*Libraries and web tools for developing APIs.*
|
|
668
|
712
|
|
|
669
|
713
|
* [API Platform](https://api-platform.com ) - Expose in minutes an hypermedia REST API that embraces JSON-LD, Hydra format.
|
|
670
|
|
-* [Apigility](https://github.com/zfcampus/zf-apigility-skeleton) - An API builder built with Zend Framework 2.
|
|
|
714
|
+* [Laminas API Tool Skeleton](https://github.com/laminas-api-tools/api-tools-skeleton) - An API builder built with the Laminas Framework.
|
|
671
|
715
|
* [Drest](https://github.com/leedavis81/drest) - A library for exposing Doctrine entities as REST resource endpoints.
|
|
672
|
716
|
* [HAL](https://github.com/blongden/hal) - A Hypertext Application Language (HAL) builder library.
|
|
673
|
717
|
* [Hateoas](https://github.com/willdurand/Hateoas) - A HATEOAS REST web service library.
|
|
|
718
|
+* [Jane](https://github.com/janephp/janephp/) - An OpenApi client generator with validation support.
|
|
674
|
719
|
* [Negotiation](https://github.com/willdurand/Negotiation) - A content negotiation library.
|
|
675
|
720
|
* [Restler](https://github.com/Luracast/Restler) - A lightweight framework to expose PHP methods as RESTful web API.
|
|
676
|
721
|
* [wsdl2phpgenerator](https://github.com/wsdl2phpgenerator/wsdl2phpgenerator) - A tool to generate PHP classes from SOAP WSDL files.
|
|
677
|
722
|
|
|
678
|
|
-### Caching
|
|
679
|
|
-*Libraries for caching data.*
|
|
|
723
|
+### Caching and Locking
|
|
|
724
|
+*Libraries for caching data and acquiring locks.*
|
|
680
|
725
|
|
|
681
|
|
-* [Alternative PHP Cache (APC)](https://secure.php.net/manual/en/book.apc.php) - Open opcode cache for PHP.
|
|
682
|
726
|
* [APIx Cache](https://github.com/apix/cache) - A thin PSR-6 cache wrapper to various caching backends emphasising cache tagging and indexing.
|
|
683
|
727
|
* [CacheTool](https://github.com/gordalina/cachetool) - A tool to clear APC/opcode caches from the command line.
|
|
684
|
|
-* [Cake Cache](https://github.com/cakephp/cache) - A caching library (CP).
|
|
|
728
|
+* [CakePHP Cache](https://github.com/cakephp/cache) - A caching library.
|
|
685
|
729
|
* [Doctrine Cache](https://github.com/doctrine/cache) - A caching library.
|
|
686
|
730
|
* [Metaphore](https://github.com/sobstel/metaphore) - Cache slam defense using a semaphore to prevent dogpile effect.
|
|
687
|
731
|
* [Stash](https://github.com/tedious/Stash) - Another library for caching.
|
|
688
|
|
-* [Zend Cache](https://github.com/zendframework/zend-cache) - Another caching library (ZF2).
|
|
|
732
|
+* [Laminas Cache](https://github.com/laminas/laminas-cache) - Another caching library.
|
|
|
733
|
+* [Lock](https://github.com/php-lock/lock) - A lock library to provide exclusive execution.
|
|
689
|
734
|
|
|
690
|
735
|
### Data Structure and Storage
|
|
691
|
736
|
*Libraries that implement data structure or storage techniques.*
|
|
692
|
737
|
|
|
693
|
|
-* [Cake Collection](https://github.com/cakephp/collection) - A simple collections library (CP).
|
|
|
738
|
+* [CakePHP Collection](https://github.com/cakephp/collection) - A simple collections library.
|
|
694
|
739
|
* [Fractal](https://github.com/thephpleague/fractal) - A library for converting complex data structures to JSON output.
|
|
695
|
740
|
* [Ginq](https://github.com/akanehara/ginq) - Another PHP library based on .NET's LINQ.
|
|
696
|
741
|
* [JsonMapper](https://github.com/cweiske/jsonmapper) - A library that maps nested JSON structures onto PHP classes.
|
|
|
@@ -698,10 +743,9 @@ Libraries to help manage database schemas and migrations.
|
|
698
|
743
|
* [Knapsack](https://github.com/DusanKasan/Knapsack) - Collection library inspired by Clojure's sequences.
|
|
699
|
744
|
* [msgpack.php](https://github.com/rybakit/msgpack.php) - A pure PHP implementation of the [MessagePack](https://msgpack.org/) serialization format.
|
|
700
|
745
|
* [PINQ](https://github.com/TimeToogo/Pinq) - A PHP library based on .NET's LINQ (Language Integrated Query).
|
|
701
|
|
-* [Porter](https://github.com/ScriptFUSION/Porter) - Data import abstraction framework.
|
|
702
|
746
|
* [Serializer](https://github.com/schmittjoh/serializer) - A library for serialising and de-serialising data.
|
|
703
|
747
|
* [YaLinqo](https://github.com/Athari/YaLinqo) - Yet Another LINQ to Objects for PHP.
|
|
704
|
|
-* [Zend Serializer](https://github.com/zendframework/zend-serializer) - Another library for serialising and de-serialising data (ZF2).
|
|
|
748
|
+* [Laminas Serializer](https://github.com/laminas/laminas-serializer) - Another library for serialising and de-serialising data.
|
|
705
|
749
|
|
|
706
|
750
|
### Notifications
|
|
707
|
751
|
*Libraries for working with notification software.*
|
|
|
@@ -723,14 +767,14 @@ Libraries to help manage database schemas and migrations.
|
|
723
|
767
|
*Libraries for Internationalization (I18n) and Localization (L10n).*
|
|
724
|
768
|
|
|
725
|
769
|
* [Aura.Intl](https://github.com/auraphp/Aura.Intl) - Provides internationalization (I18N) tools, specifically package-oriented per-locale message translation.
|
|
726
|
|
-* [Cake I18n](https://github.com/cakephp/i18n) - Message translation and localization for dates and numbers (CP)
|
|
|
770
|
+* [CakePHP I18n](https://github.com/cakephp/i18n) - Message translation and localization for dates and numbers.
|
|
727
|
771
|
|
|
728
|
772
|
### Serverless
|
|
729
|
773
|
*Libraries and tools to help build serverless web applications.*
|
|
730
|
774
|
|
|
731
|
775
|
* [Bref](https://bref.sh/) - Serverless PHP on AWS Lambda.
|
|
732
|
|
-* [OpenWhisk](http://openwhisk.apache.org/) - An open source serverless cloud platform.
|
|
733
|
|
-* [Serverless Framework](https://serverless.com/cli/) - An open source framework for building serverless applications.
|
|
|
776
|
+* [OpenWhisk](https://openwhisk.apache.org/) - An open-source serverless cloud platform.
|
|
|
777
|
+* [Serverless Framework](https://www.serverless.com/framework) - An open-source framework for building serverless applications.
|
|
734
|
778
|
* [Laravel Vapor](https://vapor.laravel.com/) - A serverless deployment platform for Laravel, powered by AWS.
|
|
735
|
779
|
|
|
736
|
780
|
## Configuration
|
|
|
@@ -738,15 +782,17 @@ Libraries to help manage database schemas and migrations.
|
|
738
|
782
|
|
|
739
|
783
|
* [PHP Dotenv](https://github.com/vlucas/phpdotenv) - Parse and load environment variables from `.env` files.
|
|
740
|
784
|
* [Symfony Dotenv](https://github.com/symfony/dotenv)- Parse and load environment variables from `.env` files.
|
|
|
785
|
+* [Yo! Symfony TOML](https://github.com/yosymfony/toml) - A PHP parser for [TOML](https://github.com/toml-lang/toml).
|
|
741
|
786
|
|
|
742
|
787
|
### Third Party APIs
|
|
743
|
788
|
*Libraries for accessing third party APIs.*
|
|
744
|
789
|
|
|
745
|
790
|
* [Amazon Web Service SDK](https://github.com/aws/aws-sdk-php) - The official PHP AWS SDK library.
|
|
|
791
|
+* [AsyncAWS](https://async-aws.com/) - An unofficial asynchronous PHP AWS SDK.
|
|
746
|
792
|
* [Campaign Monitor](https://campaignmonitor.github.io/createsend-php/) - The official Campaign Monitor PHP library.
|
|
747
|
|
-* [Dropbox SDK](https://github.com/dropbox/dropbox-sdk-php) - The official PHP Dropbox SDK library.
|
|
748
|
793
|
* [Github](https://github.com/KnpLabs/php-github-api) - A library to interface with the Github API.
|
|
749
|
794
|
* [Mailgun](https://github.com/mailgun/mailgun-php) The official Mailgun PHP API.
|
|
|
795
|
+* [Square](https://github.com/square/connect-php-sdk) - The official Square PHP SDK for payments and other Square APIs.
|
|
750
|
796
|
* [Stripe](https://github.com/stripe/stripe-php) - The official Stripe PHP library.
|
|
751
|
797
|
* [Twilio](https://github.com/twilio/twilio-php) - The official Twilio PHP REST API.
|
|
752
|
798
|
|
|
|
@@ -754,44 +800,19 @@ Libraries to help manage database schemas and migrations.
|
|
754
|
800
|
*Libraries to help build PHP extensions.*
|
|
755
|
801
|
|
|
756
|
802
|
* [PHP CPP](https://www.php-cpp.com/) - A C++ library for developing PHP extensions.
|
|
757
|
|
-* [Zephir](https://github.com/phalcon/zephir) - A compiled language between PHP and C++ for developing PHP extensions.
|
|
|
803
|
+* [Zephir](https://github.com/zephir-lang/zephir ) - A compiled language between PHP and C++ for developing PHP extensions.
|
|
758
|
804
|
|
|
759
|
805
|
### Miscellaneous
|
|
760
|
|
-*Useful libraries or tools that don't fit in the categories above.*
|
|
|
806
|
+*Useful libraries or utilities that don't fit into the categories above.*
|
|
761
|
807
|
|
|
762
|
|
-* [Annotations](https://github.com/doctrine/annotations) - An annotations library (part of Doctrine).
|
|
|
808
|
+* [Annotations](https://github.com/doctrine/annotations) - An annotation library (part of Doctrine).
|
|
763
|
809
|
* [BotMan](https://github.com/botman/botman) - A framework agnostic PHP library to build cross-platform chat bots.
|
|
764
|
|
-* [Cake Utility](https://github.com/cakephp/utility) - Utility classes such as Inflector, String, Hash, Security and Xml (CP).
|
|
765
|
|
-* [Chief](https://github.com/adamnicholson/Chief) - A command bus library.
|
|
766
|
810
|
* [ClassPreloader](https://github.com/ClassPreloader/ClassPreloader) - A library for optimising autoloading.
|
|
767
|
|
-* [Country List](https://github.com/umpirsky/country-list) - A list of all countries with names and ISO 3166-1 codes.
|
|
768
|
|
-* [Embera](https://github.com/mpratt/Embera) - An Oembed consumer library.
|
|
769
|
|
-* [Essence](https://github.com/essence/essence) - A library for extracting web media.
|
|
770
|
|
-* [Graphviz](https://github.com/alexandresalome/graphviz) - A Graphviz library.
|
|
771
|
|
-* [Hprose-PHP](https://github.com/hprose/hprose-php) - A very newbility RPC Library, support 25+ languages now.
|
|
772
|
|
-* [JSON Lint](https://github.com/Seldaek/jsonlint) - A JSON lint utility.
|
|
773
|
|
-* [JSONPCallbackValidator](https://github.com/willdurand/JsonpCallbackValidator) - A library for validating JSONP callbacks.
|
|
774
|
|
-* [Lock](https://github.com/php-lock/lock) - A lock library to provide exclusive execution.
|
|
775
|
|
-* [Metrics](https://github.com/beberlei/metrics) - A simple metrics API library.
|
|
|
811
|
+* [Hprose-PHP](https://github.com/hprose/hprose-php) - A cross-language RPC.
|
|
776
|
812
|
* [noCAPTCHA](https://github.com/ARCANEDEV/noCAPTCHA) - Helper for Google's noCAPTCHA (reCAPTCHA).
|
|
777
|
|
-* [Nmap](https://github.com/willdurand/nmap) - A PHP wrapper around [Nmap](https://nmap.org/).
|
|
778
|
813
|
* [Pagerfanta](https://github.com/whiteoctober/Pagerfanta) - A pagination library.
|
|
779
|
|
-* [PHP PassBook](https://github.com/eymengunay/php-passbook) - A PHP library for iOS PassBook.
|
|
780
|
|
-* [PHP-ML](https://github.com/php-ai/php-ml) - A library for Machine Learning in PHP.
|
|
781
|
|
-* [PHPCR](https://github.com/phpcr/phpcr) - A PHP port of the Java Content Repository (JCR).
|
|
782
|
|
-* [PHPStack](http://dunkels.com/adam/phpstack/) - A TCP/IP stack proof of concept written in PHP.
|
|
783
|
|
-* [print_o](https://github.com/koriym/print_o) - An object graph visualizer.
|
|
784
|
|
-* [Procrastinator](https://github.com/lstrojny/Procrastinator) - A library for running time consuming tasks.
|
|
785
|
|
-* [Prooph Service Bus](https://github.com/prooph/service-bus) - Lightweight message bus supporting CQRS and Micro Services
|
|
786
|
|
-* [RMT](https://github.com/liip/RMT) - A library for versioning and releasing software.
|
|
787
|
|
-* [sabre/vobject](https://github.com/sabre-io/vobject) - A library for parsing VCard and iCalendar objects.
|
|
788
|
814
|
* [Safe](https://github.com/thecodingmachine/safe) - All PHP functions, rewritten to throw exceptions instead of returning false.
|
|
789
|
|
-* [Slimdump](https://github.com/webfactory/slimdump) - An easy dumper tool for MySQL.
|
|
790
|
|
-* [Spork](https://github.com/kriswallsmith/spork) - A process forking library.
|
|
791
|
815
|
* [SuperClosure](https://github.com/jeremeamia/super_closure) - A library that allows Closures to be serialized.
|
|
792
|
|
-* [Symfony VarDumper](https://github.com/symfony/var-dumper) - A variable dumper component (SF).
|
|
793
|
|
-* [Underscore](https://anahkiasen.github.io/underscore-php/) - A PHP port of the Underscore JS library.
|
|
794
|
|
-* [Whoops](https://github.com/filp/whoops) - A pretty error handling library.
|
|
795
|
816
|
|
|
796
|
817
|
# Software
|
|
797
|
818
|
*Software for creating a development environment.*
|
|
|
@@ -799,37 +820,39 @@ Libraries to help manage database schemas and migrations.
|
|
799
|
820
|
### PHP Installation
|
|
800
|
821
|
*Tools to help install and manage PHP on your computer.*
|
|
801
|
822
|
|
|
802
|
|
-* [HomeBrew](https://brew.sh/) - A package manager for OSX.
|
|
803
|
823
|
* [Brew PHP Switcher](https://github.com/philcook/brew-php-switcher) - Brew PHP switcher.
|
|
|
824
|
+* [HomeBrew](https://brew.sh/) - A package manager for OSX.
|
|
|
825
|
+* [Laravel Valet](https://laravel.com/docs/master/valet) - A development environment for macOS.
|
|
804
|
826
|
* [PHP Brew](https://github.com/phpbrew/phpbrew) - A PHP version manager and installer.
|
|
805
|
827
|
* [PHP Build](https://github.com/php-build/php-build) - Another PHP version installer.
|
|
806
|
828
|
* [PHP OSX](https://php-osx.liip.ch/) - A PHP installer for OSX.
|
|
807
|
|
-* [VirtPHP](http://virtphp.org/) - A tool for creating and managing isolated PHP environments.
|
|
808
|
829
|
|
|
809
|
830
|
### Development Environment
|
|
810
|
|
-*Software and tools for creating a sandboxed development environment.*
|
|
|
831
|
+*Software and tools for creating and sharing a development environment.*
|
|
811
|
832
|
|
|
812
|
833
|
* [Ansible](https://www.ansible.com/) - A radically simple orchestration framework.
|
|
813
|
|
-* [Phansible](http://phansible.com/) - A web tool for building PHP development virtual machines with Ansible.
|
|
814
|
|
-* [Protobox](https://www.getprotobox.com/) - Another web tool for building PHP development virtual machines.
|
|
815
|
|
-* [PuPHPet](https://puphpet.com/) - A web tool for building PHP development virtual machines.
|
|
|
834
|
+* [Docker](https://www.docker.com/) - A containerization platform.
|
|
|
835
|
+* [Docker PHP Extension Installer](https://github.com/mlocati/docker-php-extension-installer) - Easily install PHP extensions in Docker containers.
|
|
|
836
|
+* [Expose](https://github.com/beyondcode/expose) - An open source PHP tunneling service.
|
|
|
837
|
+* [Lando](https://lando.dev/) - Push-button development environments.
|
|
|
838
|
+* [Laravel Homestead](https://laravel.com/docs/master/homestead) - A local development environment for Laravel.
|
|
|
839
|
+* [Laradock](http://laradock.io/) - A full PHP development environment based on Docker.
|
|
816
|
840
|
* [Puppet](https://puppet.com/) - A server automation framework and application.
|
|
|
841
|
+* [Takeout](https://github.com/tighten/takeout) - A Docker-based development-only dependency manager.
|
|
817
|
842
|
* [Vagrant](https://www.vagrantup.com/) - A portable development environment utility.
|
|
818
|
|
-* [Docker](https://www.docker.com/) - A containerization platform.
|
|
819
|
843
|
|
|
820
|
844
|
### Virtual Machines
|
|
821
|
845
|
*Alternative PHP virtual machines.*
|
|
822
|
846
|
|
|
823
|
847
|
* [Hack](https://hacklang.org/) - A programming language for HHVM.
|
|
824
|
848
|
* [HHVM](https://github.com/facebook/hhvm) - A Virtual Machine, Runtime and JIT for PHP by Facebook.
|
|
|
849
|
+* [PeachPie](https://github.com/peachpiecompiler/peachpie) - PHP compiler and runtime for .NET and .NET Core.
|
|
825
|
850
|
|
|
826
|
851
|
### Text Editors and IDEs
|
|
827
|
852
|
*Text Editors and Integrated Development Environments (IDE) with support for PHP.*
|
|
828
|
853
|
|
|
829
|
|
-* [Atom](https://atom.io/) - A hackable text editor.
|
|
830
|
|
-* [Atom IDE](https://ide.atom.io/) - An IDE extension for Atom.
|
|
831
|
854
|
* [Eclipse for PHP Developers](https://www.eclipse.org/downloads/) - A PHP IDE based on the Eclipse platform.
|
|
832
|
|
-* [Netbeans](https://netbeans.org) - An IDE with support for PHP and HTML5.
|
|
|
855
|
+* [Apache NetBeans](https://netbeans.apache.org/) - An IDE with support for PHP and HTML5.
|
|
833
|
856
|
* [PhpStorm](https://www.jetbrains.com/phpstorm/) - A commercial PHP IDE.
|
|
834
|
857
|
* [VS Code](https://code.visualstudio.com/) - An open source code editor.
|
|
835
|
858
|
|
|
|
@@ -837,22 +860,24 @@ Libraries to help manage database schemas and migrations.
|
|
837
|
860
|
*Web-based applications and tools.*
|
|
838
|
861
|
|
|
839
|
862
|
* [3V4L](https://3v4l.org/) - An online PHP & HHVM shell.
|
|
840
|
|
-* [DBV](https://dbv.vizuina.com/) - A database version control application.
|
|
841
|
|
-* [PHP Queue](https://github.com/CoderKungfu/php-queue) - An application for managing queueing backends.
|
|
842
|
|
-* [MailCatcher](https://github.com/sj26/mailcatcher) - A web tool for capturing and viewing emails.
|
|
843
|
|
-* [Cachet](https://github.com/cachethq/cachet) - The open source status page system.
|
|
844
|
|
-* [phpRedisAdmin](https://github.com/ErikDubbelboer/phpRedisAdmin) - A simple web interface to manage [Redis](https://redis.io/) databases.
|
|
845
|
|
-* [phpMyAdmin](https://github.com/phpmyadmin/phpmyadmin) - A web interface for MySQL/MariaDB.
|
|
846
|
863
|
* [Adminer](https://www.adminer.org/) - Database management in a single PHP file.
|
|
|
864
|
+* [Cachet](https://github.com/cachethq/cachet) - The open source status page system.
|
|
|
865
|
+* [DBV](https://github.com/victorstanciu/dbv) - A database version control application.
|
|
847
|
866
|
* [Lychee](https://github.com/electerious/Lychee) - An easy to use and great looking photo-management-system.
|
|
848
|
|
-* [Leantime](https://leantime.io) - Lean project management system for small teams and startups
|
|
|
867
|
+* [Leantime](https://leantime.io) - Strategic project management system for the non project manager
|
|
|
868
|
+* [MailCatcher](https://github.com/sj26/mailcatcher) - A web tool for capturing and viewing emails.
|
|
|
869
|
+* [phpMyAdmin](https://github.com/phpmyadmin/phpmyadmin) - A web interface for MySQL/MariaDB.
|
|
|
870
|
+* [PHP Queue](https://github.com/CoderKungfu/php-queue) - An application for managing queueing backends.
|
|
|
871
|
+* [phpRedisAdmin](https://github.com/ErikDubbelboer/phpRedisAdmin) - A simple web interface to manage [Redis](https://redis.io/) databases.
|
|
|
872
|
+* [PHPSandbox](https://phpsandbox.io) - An online IDE for PHP in the browser.
|
|
|
873
|
+
|
|
849
|
874
|
|
|
850
|
875
|
### Infrastructure
|
|
851
|
876
|
*Infrastructure for providing PHP applications and services.*
|
|
852
|
877
|
|
|
853
|
878
|
* [appserver.io](https://github.com/appserver-io/appserver) - A multithreaded application server for PHP, written in PHP.
|
|
854
|
879
|
* [php-pm](https://github.com/php-pm/php-pm) - A process manager, supercharger and load balancer for PHP applications.
|
|
855
|
|
-* [RoadRunner](https://github.com/spiral/roadrunner) - High-performance PHP application server, load-balancer and process manager.
|
|
|
880
|
+* [RoadRunner](https://github.com/roadrunner-server/roadrunner) - High-performance PHP application server, load-balancer and process manager.
|
|
856
|
881
|
|
|
857
|
882
|
# Resources
|
|
858
|
883
|
Various resources, such as books, websites and articles, for improving your PHP development skills and knowledge.
|
|
|
@@ -862,6 +887,8 @@ Various resources, such as books, websites and articles, for improving your PHP
|
|
862
|
887
|
|
|
863
|
888
|
* [libs.garden: PHP](https://libs.garden/php) - An overview of fastest growing PHP libraries.
|
|
864
|
889
|
* [Nomad PHP](https://nomadphp.com/) - A online PHP learning resource.
|
|
|
890
|
+* [Laravel News](https://laravel-news.com/) - The official Laravel blog.
|
|
|
891
|
+* [PHP Annotated Monthly](https://blog.jetbrains.com/phpstorm/tag/php-annotated-monthly/) - A monthly digest of PHP news.
|
|
865
|
892
|
* [PHP Best Practices](https://phpbestpractices.org/) - A PHP best practice guide.
|
|
866
|
893
|
* [PHP FIG](https://www.php-fig.org/) - The PHP Framework Interoperability Group.
|
|
867
|
894
|
* [PHP Package Development Standards](http://php-pds.com) - Package development standards for PHP.
|
|
|
@@ -870,27 +897,18 @@ Various resources, such as books, websites and articles, for improving your PHP
|
|
870
|
897
|
* [PHP The Right Way](https://phptherightway.com/) - A PHP best practice quick reference guide.
|
|
871
|
898
|
* [PHP UG](https://php.ug) - A website to help people locate their nearest PHP user group (UG).
|
|
872
|
899
|
* [PHP Versions](http://phpversions.info/) - Lists which versions of PHP are available on several popular web hosts.
|
|
873
|
|
-* [PHP Weekly](http://www.phpweekly.com/archive.html) - A weekly PHP newsletter.
|
|
874
|
|
-* [Securing PHP](https://www.securingphp.com/) - A newsletter about PHP security and library recommendations.
|
|
|
900
|
+* [PHP Watch](https://php.watch/) - PHP articles, news, upcoming changes, RFCs and more.
|
|
|
901
|
+* [PHP Weekly](https://www.phpweekly.com/archive.html) - A weekly PHP newsletter.
|
|
875
|
902
|
* [Seven PHP](https://7php.com/) - A website that interviews members of the PHP community.
|
|
876
|
|
-* [PHP Annotated Monthly](https://blog.jetbrains.com/phpstorm/category/php-annotated-monthly/) - A monthly digest of PHP news.
|
|
877
|
|
-
|
|
878
|
|
-### Other Websites
|
|
879
|
|
-*Useful websites related to web development.*
|
|
880
|
|
-
|
|
881
|
|
-* [Atlassian Git Tutorials](https://www.atlassian.com/git) - A series of Git tutorials.
|
|
882
|
|
-* [Learning Linux](https://linuxjourney.com/) - A website for learning Linux.
|
|
883
|
|
-* [Semantic Versioning](https://semver.org/) - A website explaining semantic versioning.
|
|
884
|
|
-* [Servers for Hackers](https://serversforhackers.com/) - A newsletter about server management.
|
|
885
|
|
-* [The Open Web Application Security Project (OWASP)](https://www.owasp.org/index.php/Main_Page) - An open software security community.
|
|
886
|
903
|
|
|
887
|
904
|
### PHP Books
|
|
888
|
905
|
*Fantastic PHP-related books.*
|
|
889
|
906
|
|
|
|
907
|
+* [Domain-Driven Design in PHP](https://leanpub.com/ddd-in-php) - Real examples written in PHP showcasing DDD Architectural Styles.
|
|
890
|
908
|
* [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
|
|
891
|
909
|
* [Grumpy PHPUnit](https://leanpub.com/grumpy-phpunit) - A book about unit testing with PHPUnit by Chris Hartjes.
|
|
892
|
910
|
* [Mastering Object-Orientated PHP](https://www.brandonsavage.net/) - A book about object-orientated PHP by Brandon Savage.
|
|
893
|
|
-* [Modern PHP New Features and Good Practices](http://shop.oreilly.com/product/0636920033868.do) - A book about new PHP features and best practices by Josh Lockhart.
|
|
|
911
|
+* [Modern PHP New Features and Good Practices](https://www.oreilly.com/library/view/~/9781491905173/) - A book about new PHP features and best practices by Josh Lockhart.
|
|
894
|
912
|
* [Modernizing Legacy Applications in PHP](https://leanpub.com/mlaphp) - A book about modernizing legacy PHP applications by Paul M. Jones.
|
|
895
|
913
|
* [PHP 7 Upgrade Guide](https://leanpub.com/php7) - An ebook covering all of the features and changes in PHP 7 by Colin O'Dell.
|
|
896
|
914
|
* [PHP Pandas](https://daylerees.com/php-pandas/) - A book about learning to write PHP by Dayle Rees.
|
|
|
@@ -899,19 +917,6 @@ Various resources, such as books, websites and articles, for improving your PHP
|
|
899
|
917
|
* [Signaling PHP](https://leanpub.com/signalingphp) - A book about catching PCNTL signals in CLI scripts by Cal Evans.
|
|
900
|
918
|
* [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.
|
|
901
|
919
|
* [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.
|
|
902
|
|
-* [Domain-Driven Design in PHP](https://leanpub.com/ddd-in-php) - Real examples written in PHP showcasing DDD Architectural Styles.
|
|
903
|
|
-
|
|
904
|
|
-### Other Books
|
|
905
|
|
-*Books related to general computing and web development.*
|
|
906
|
|
-
|
|
907
|
|
-* [Elasticsearch: The Definitive Guide](https://www.elastic.co/guide/index.html) - A guide to working with Elasticsearch by Clinton Gormley and Zachary Tong.
|
|
908
|
|
-* [Eloquent JavaScript](https://eloquentjavascript.net/) - A book about JavaScript programming by Marijn Haverbeke.
|
|
909
|
|
-* [Head First Design Patterns](https://www.oreilly.com/library/view/head-first-design/0596007124/) - A book that expains software design patterns.
|
|
910
|
|
-* [Pro Git](https://git-scm.com/book/en/v2) - A book about Git by Scott Chacon and Ben Straub.
|
|
911
|
|
-* [The Linux Command Line](http://linuxcommand.org/tlcl.php) - A book about the Linux command line by William Shotts.
|
|
912
|
|
-* [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.
|
|
913
|
|
-* [Understanding Computation](https://computationbook.com) - A book about computation theory by Tom Stuart.
|
|
914
|
|
-* [Vagrant Cookbook](https://leanpub.com/vagrantcookbook) - A book about creating Vagrant environments by Erika Heidi.
|
|
915
|
920
|
|
|
916
|
921
|
### PHP Videos
|
|
917
|
922
|
*Fantastic PHP-related videos.*
|
|
|
@@ -920,52 +925,33 @@ Various resources, such as books, websites and articles, for improving your PHP
|
|
920
|
925
|
* [PHP UK Conference](https://www.youtube.com/user/phpukconference/videos) - A collection of videos from the PHP UK Conference.
|
|
921
|
926
|
* [Programming with Anthony](https://www.youtube.com/playlist?list=PLM-218uGSX3DQ3KsB5NJnuOqPqc5CW2kW) - A video series by Anthony Ferrara.
|
|
922
|
927
|
* [Taking PHP Seriously](https://www.infoq.com/presentations/php-history/) - A talk outlining PHP's strengths by Keith Adams of Facebook.
|
|
|
928
|
+* [Laracasts](https://laracasts.com) - Screencasts about Laravel, Vue JS and more.
|
|
|
929
|
+* [Laravel YouTube Channel](https://www.youtube.com/channel/UCfO2GiQwb-cwJTb1CuRSkwg) - The official Laravel YouTube channel.
|
|
|
930
|
+* [SymfonyCasts](https://symfonycasts.com/) - Screencasts and tutorials about PHP and Symfony.
|
|
923
|
931
|
|
|
924
|
932
|
### PHP Podcasts
|
|
925
|
933
|
*Podcasts with a focus on PHP topics.*
|
|
926
|
934
|
|
|
927
|
|
-* [PHP Internals New](https://phpinternals.news) - A podcast about PHP internals.
|
|
928
|
|
-* [PHP Roundtable](https://www.phproundtable.com/) - The PHP Roundtable is a casual gathering of developers discussing topics that PHP nerds care about.
|
|
|
935
|
+* [Laravel Podcast](https://laravelpodcast.com/) - Laravel and PHP development news and discussion.
|
|
|
936
|
+* [PHP Internals News](https://phpinternals.news) - A podcast about PHP internals.
|
|
|
937
|
+* [PHP Roundtable](https://phproundtable.com/) - The PHP Roundtable is a casual gathering of developers discussing topics that PHP nerds care about.
|
|
929
|
938
|
* [PHP Town Hall](https://phptownhall.com/) - A casual PHP podcast by Ben Edmunds and Phil Sturgeon.
|
|
930
|
939
|
* [Voices of the ElePHPant](https://voicesoftheelephpant.com/) Interviews with the people that make the PHP community special.
|
|
931
|
940
|
|
|
|
941
|
+### PHP Newsletters
|
|
|
942
|
+*PHP-related news directly to your inbox.*
|
|
|
943
|
+
|
|
|
944
|
+* [PHP Weekly](https://www.phpweekly.com/) - A weekly newsletter about PHP.
|
|
|
945
|
+
|
|
932
|
946
|
### PHP Reading
|
|
933
|
|
-*PHP-releated reading materials.*
|
|
934
|
|
-
|
|
935
|
|
-* [Composer Primer](https://daylerees.com/composer-primer/) - A Composer primer.
|
|
936
|
|
-* [Composer Stability Flags](https://igor.io/2013/02/07/composer-stability-flags.html) - An article about Composer stability flags.
|
|
937
|
|
-* [Composer Versioning](https://igor.io/2013/01/07/composer-versioning.html) - An article about Composer versioning.
|
|
938
|
|
-* [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.
|
|
939
|
|
-* [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.
|
|
940
|
|
-* [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.
|
|
941
|
|
-* [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.
|
|
942
|
|
-* [PHP Package Checklist](https://phppackagechecklist.com/) - A checklist for successful PHP package development.
|
|
943
|
|
-* [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.
|
|
944
|
|
-* [Preventing CSRF Attacks](https://blog.ircmaxell.com/2013/02/preventing-csrf-attacks.html) - An article on preventing CSRF attacks.
|
|
945
|
|
-* [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.
|
|
946
|
|
-* [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.
|
|
947
|
|
-* [Use Env](https://seancoates.com/blogs/use-env/) - An article about using the unix environment helper.
|
|
|
947
|
+*PHP-related reading materials.*
|
|
|
948
|
+
|
|
|
949
|
+* [php[architect]](https://www.phparch.com/magazine/) - A monthly magazine dedicated to PHP.
|
|
948
|
950
|
|
|
949
|
951
|
### PHP Internals Reading
|
|
950
|
952
|
*Reading materials related to the PHP internals or performance.*
|
|
951
|
953
|
|
|
952
|
|
-* [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.
|
|
953
|
|
-* [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.
|
|
954
|
|
-* [How Foreach Works](https://stackoverflow.com/questions/10057671/how-does-php-foreach-actually-work/14854568#14854568) - A detailed StackOverflow answer about foreach.
|
|
955
|
|
-* [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.
|
|
956
|
|
-* [PHP Evaluation Order](https://gist.github.com/nikic/6699370) - An article about evaluation order in PHP.
|
|
957
|
|
-* [PHP Internals Book](http://www.phpinternalsbook.com) - An online book about PHP internals, written by three core developers.
|
|
958
|
954
|
* [PHP RFCs](https://wiki.php.net/rfc) - The home of PHP RFCs (Request for Comments).
|
|
959
|
|
-* [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.
|
|
960
|
|
-* [The PHP Ternary Operator. Fast or Not?](http://fabien.potencier.org/the-php-ternary-operator-fast-or-not.html) - An article ternary performance.
|
|
961
|
|
-* [Understanding OpCodes](http://blog.golemon.com/2008/01/understanding-opcodes.html) - An article about opcodes.
|
|
962
|
|
-* [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.
|
|
963
|
|
-* [Why Objects (Usually) Use Less Memory Than Arrays](https://gist.github.com/nikic/5015323) - An article about object and array internals.
|
|
964
|
|
-* [You're Being Lied To](http://blog.golemon.com/2007/01/youre-being-lied-to.html) - An article about internal ZVALs.
|
|
965
|
|
-* Collecting Garbage: [1](https://secure.php.net/manual/en/features.gc.refcounting-basics.php) [2](https://secure.php.net/manual/en/features.gc.collecting-cycles.php) [3](https://secure.php.net/manual/en/features.gc.performance-considerations.php) - A series about the PHP garbage collection internals.
|
|
966
|
|
-* 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.
|
|
967
|
|
-
|
|
968
|
|
-### PHP Magazines
|
|
969
|
|
-*Fantastic PHP-related magazines.*
|
|
970
|
|
-
|
|
971
|
|
-* [php[architect]](https://www.phparch.com/magazine/) - A monthly magazine dedicated to PHP.
|
|
|
955
|
+* [Externals](https://externals.io/) - PHP internal discussions.
|
|
|
956
|
+* [PHP RFC Watch](https://php-rfc-watch.beberlei.de/) - Watch the latest PHP [RFCs](https://wiki.php.net/rfc).
|
|
|
957
|
+* [PHP Internals Book](https://www.phpinternalsbook.com/) - An online book about PHP internals, written by three core developers.
|