Browse Source

Merge branch 'master' into patch-1

pull/640/head
Eugene Leonovich 8 years ago
parent
commit
9db5a4f980
4 changed files with 190 additions and 79 deletions
  1. 1
    1
      .travis.yml
  2. 65
    0
      .varci.yml
  3. 4
    4
      CONTRIBUTING.md
  4. 120
    74
      README.md

+ 1
- 1
.travis.yml View File

4
 before_script:
4
 before_script:
5
   - gem install awesome_bot
5
   - gem install awesome_bot
6
 script:
6
 script:
7
-  - awesome_bot README.md --white-list igor.io,hoa-project.net
7
+  - awesome_bot README.md --white-list igor.io,symfony,toranproxy.com,vagrantup.com,3v4l.org,voicesoftheelephpant.com
8
 notifications:
8
 notifications:
9
   email: false
9
   email: false

+ 65
- 0
.varci.yml View File

1
+ruleset:
2
+
3
+  body_link:
4
+    name: "Pull requests that add links should also include them in the body"
5
+    events: [ pull_request ]
6
+    when:
7
+      - action = "opened"
8
+      - files = ["README.md"]
9
+      - deletions = 0
10
+      - not (body_links.added contains diff_links.added)
11
+    comment: |
12
+      This pull request adds the following suggestion:
13
+
14
+      {{ diff.added.0 }}
15
+
16
+  broken_link:
17
+    name: "Pull request diff contains broken links"
18
+    events: [ pull_request ]
19
+    when:
20
+      - action = "opened"
21
+      - count(diff_links.broken) > 0
22
+    comment: >
23
+      @{{ user.login }}, at least one of the links in the pull request diff was
24
+      reported as broken:
25
+
26
+      - {{ diff_links.broken.0 }}
27
+
28
+  missing_link:
29
+    name: "Suggestions should include a link"
30
+    events: [ pull_request ]
31
+    when:
32
+      - action = "opened"
33
+      - files = ["README.md"]
34
+      - deletions = 0
35
+      - additions = 1
36
+      - count(grep("/^\* /", diff.added)) = 1
37
+      - count(diff_links.added) != 1
38
+    comment: >
39
+      @{{ user.login }}, it looks like you have added a new suggestion to the
40
+      `README.md` file but haven't linked to the project. Please update the
41
+      `README.md` to also link to the project, thanks!
42
+
43
+  multiple_additions:
44
+    name: "Pull request should only suggest one addition at a time"
45
+    events: [ pull_request ]
46
+    comment: |
47
+      @{{ user.login }}, it looks like you are trying to add multiple suggestions in a single pull request.
48
+
49
+      If so, please split these into multiple pull requests so each item's inclusion in the list can be discussed separately.
50
+    when:
51
+      - action = "opened"
52
+      - files = ["README.md"]
53
+      - deletions = 0
54
+      - count(grep("/^\* /", diff.added)) > 1
55
+
56
+  needs_explanation:
57
+    name: 'Pull request bodies should have a detailed explanation'
58
+    events: [ pull_request ]
59
+    label: 'needs: explanation'
60
+    when:
61
+      - action = "opened"
62
+      - length(body) < 25
63
+    message: >
64
+      @{{ user.login }}, please update the pull request body with a description
65
+      of what you are adding or changing (of at least 25 characters).

+ 4
- 4
CONTRIBUTING.md View File

1
 # Contribution Guidelines
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: 
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
 
3
 
4
-a) Be widely recommended regardless of personal opinion  
5
-b) Well known or discussed within the PHP community  
6
-c) Be unique in its approach or function  
7
-d) Fill a niche gap in the market  
4
+1. Be widely recommended regardless of personal opinion
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
 
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.
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
 
10
 

+ 120
- 74
README.md View File

7
 
7
 
8
 ## Table of Contents
8
 ## Table of Contents
9
 - [Awesome PHP](#awesome-php)
9
 - [Awesome PHP](#awesome-php)
10
+    - [Composer Repositories](#composer-repositories)
10
     - [Dependency Management](#dependency-management)
11
     - [Dependency Management](#dependency-management)
11
     - [Dependency Management Extras](#dependency-management-extras)
12
     - [Dependency Management Extras](#dependency-management-extras)
12
     - [Frameworks](#frameworks)
13
     - [Frameworks](#frameworks)
76
     - [Other Websites](#other-websites)
77
     - [Other Websites](#other-websites)
77
     - [PHP Books](#php-books)
78
     - [PHP Books](#php-books)
78
     - [PHP Videos](#php-videos)
79
     - [PHP Videos](#php-videos)
80
+    - [PHP Podcasts](#php-podcasts)
79
     - [PHP Reading](#php-reading)
81
     - [PHP Reading](#php-reading)
80
     - [PHP Internals Reading](#php-internals-reading)
82
     - [PHP Internals Reading](#php-internals-reading)
81
 - [Contributing](#contributing)
83
 - [Contributing](#contributing)
82
 
84
 
85
+## Composer Repositories
86
+*Composer Repositories.*
87
+
88
+* [Firegento](http://packages.firegento.com/) - Magento Module Composer Repository.
89
+* [Packagist](https://packagist.org/) - The PHP Package Repository.
90
+* [PaketHub](https://pakethub.com/) - All-in-One PHP Package Repository.
91
+* [Private Packagist](https://packagist.com/) - Composer package archive as a service for PHP.
92
+* [WordPress Packagist](https://wpackagist.org/) - Manage your plugins with Composer.
93
+* [Zend Framework Packages](https://packages.zendframework.com/) - Zend Framework Composer Repository.
94
+
83
 ## Dependency Management
95
 ## Dependency Management
84
 *Libraries for dependency and package management.*
96
 *Libraries for dependency and package management.*
85
 
97
 
86
-* [Climb](https://github.com/vinkla/climb) - A Composer version manager tool.
87
 * [Composer Installers](https://github.com/composer/installers) - A  multi framework Composer library installer.
98
 * [Composer Installers](https://github.com/composer/installers) - A  multi framework Composer library installer.
88
-* [Composer](https://getcomposer.org/)/[Packagist](https://packagist.org/) - A package and dependency manager.
99
+* [Composer](https://getcomposer.org/) - A package and dependency manager.
89
 * [Melody](http://melody.sensiolabs.org/) - A tool to build one file Composer scripts.
100
 * [Melody](http://melody.sensiolabs.org/) - A tool to build one file Composer scripts.
90
 * [Pickle](https://github.com/FriendsOfPHP/pickle) - A PHP extension installer.
101
 * [Pickle](https://github.com/FriendsOfPHP/pickle) - A PHP extension installer.
91
 
102
 
100
 * [Patch Installer](https://github.com/goatherd/patch-installer) - A library to install patches using Composer.
111
 * [Patch Installer](https://github.com/goatherd/patch-installer) - A library to install patches using Composer.
101
 * [Prestissimo](https://github.com/hirak/prestissimo) - A composer plugin which enables parallel install process.
112
 * [Prestissimo](https://github.com/hirak/prestissimo) - A composer plugin which enables parallel install process.
102
 * [Satis](https://github.com/composer/satis) - A static Composer repository generator.
113
 * [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.
103
 * [Toran Proxy](https://toranproxy.com) - A static Composer repository and proxy.
115
 * [Toran Proxy](https://toranproxy.com) - A static Composer repository and proxy.
104
 
116
 
105
 ## Frameworks
117
 ## Frameworks
106
 *Web development frameworks.*
118
 *Web development frameworks.*
107
 
119
 
108
-* [Aura PHP](http://auraphp.com/) - A framework of independent components.
109
-* [CakePHP](http://cakephp.org/) - A rapid application development framework (CP).
120
+* [Aura Framework](http://auraphp.com/framework/) - A framework built from independent components.
121
+* [CakePHP](https://cakephp.org/) - A rapid application development framework (CP).
110
 * [Laravel 5](https://laravel.com/) - Another PHP framework (L5).
122
 * [Laravel 5](https://laravel.com/) - Another PHP framework (L5).
111
 * [Nette](https://nette.org) - Another framework comprised of individual components.
123
 * [Nette](https://nette.org) - Another framework comprised of individual components.
112
 * [Phalcon](https://phalconphp.com/en/) - A framework implemented as a C extension.
124
 * [Phalcon](https://phalconphp.com/en/) - A framework implemented as a C extension.
113
 * [PPI Framework 2](http://www.ppi.io) - An interoperability framework.
125
 * [PPI Framework 2](http://www.ppi.io) - An interoperability framework.
114
-* [Symfony 2](http://symfony.com/) - A framework comprised of individual components (SF2).
126
+* [Symfony](https://symfony.com/) - A framework comprised of individual components (SF).
115
 * [Yii2](https://github.com/yiisoft/yii2/) - Another PHP framework.
127
 * [Yii2](https://github.com/yiisoft/yii2/) - Another PHP framework.
116
-* [Zend Framework 2](http://framework.zend.com) - Another framework comprised of individual components (ZF2).
117
-* [Radar](https://github.com/radarphp/Radar.Adr) - An Action-Domain-Responder implementation for PHP.
118
-* [Ice](http://www.iceframework.org/) - Another simple and fast PHP framework delivered as C-extension.
128
+* [Zend Framework 2](https://framework.zend.com) - Another framework comprised of individual components (ZF2).
129
+* [Ice](https://www.iceframework.org/) - Another simple and fast PHP framework delivered as C-extension.
119
 
130
 
120
 ## Framework Extras
131
 ## Framework Extras
121
 *Extras related to web development frameworks.*
132
 *Extras related to web development frameworks.*
122
 
133
 
123
 * [CakePHP CRUD](https://github.com/friendsofcake/crud) - A Rapid Application Development (RAD) plugin for CakePHP.
134
 * [CakePHP CRUD](https://github.com/friendsofcake/crud) - A Rapid Application Development (RAD) plugin for CakePHP.
124
-* [Knp RAD Bundle](http://rad.knplabs.com/) - A Rapid Application Development (RAD) bundle for Symfony 2.
135
+* [Knp RAD Components](http://rad.knplabs.com/) - A set of Rapid Application Development (RAD) components for Symfony.
125
 * [Symfony CMF](https://github.com/symfony-cmf/symfony-cmf) - A Content Management Framework to create custom CMS.
136
 * [Symfony CMF](https://github.com/symfony-cmf/symfony-cmf) - A Content Management Framework to create custom CMS.
126
 
137
 
127
 ## Components
138
 ## Components
128
 *Standalone components from web development frameworks and development groups.*
139
 *Standalone components from web development frameworks and development groups.*
129
 
140
 
130
-* [CakePHP Plugins](http://plugins.cakephp.org/) - A directory of CakePHP plugins.
131
-* [Hoa Project](http://hoa-project.net/En/) - Another package of PHP components.
141
+* [Aura](http://auraphp.com/) - Independent components, fully decoupled from each other and from any framework.
142
+* [CakePHP Plugins](https://plugins.cakephp.org/) - A directory of CakePHP plugins.
143
+* [Hoa Project](https://hoa-project.net/En/) - Another package of PHP components.
132
 * [League of Extraordinary Packages](https://thephpleague.com/) - A PHP package development group.
144
 * [League of Extraordinary Packages](https://thephpleague.com/) - A PHP package development group.
133
-* [Symfony2 Components](http://symfony.com/doc/master/components/index.html) - The components that make Symfony 2.
134
-* [Zend Framework 2 Components](https://packages.zendframework.com/) - The components that make Zend Framework.
145
+* [Symfony Components](http://symfony.com/doc/master/components/index.html) - The components that make Symfony.
146
+* [Zend Framework 2 Components](https://docs.zendframework.com/) - The components that make Zend Framework.
135
 
147
 
136
 ## Micro Frameworks
148
 ## Micro Frameworks
137
 *Micro frameworks and routers.*
149
 *Micro frameworks and routers.*
138
 
150
 
139
 * [Bullet PHP](http://bulletphp.com/) - A micro framework for building REST APIs.
151
 * [Bullet PHP](http://bulletphp.com/) - A micro framework for building REST APIs.
140
 * [Lumen](https://lumen.laravel.com) - A micro-framework by Laravel.
152
 * [Lumen](https://lumen.laravel.com) - A micro-framework by Laravel.
141
-* [Proton](https://github.com/alexbilbie/Proton) - A StackPHP compatible micro framework
142
-* [Silex](http://silex.sensiolabs.org/) - A micro framework built around Symfony2 components.
143
-* [Slim](http://www.slimframework.com/) - Another simple micro framework.
153
+* [Proton](https://github.com/alexbilbie/Proton) - A StackPHP compatible micro framework.
154
+* [Radar](https://github.com/radarphp/Radar.Adr) - An Action-Domain-Responder implementation for PHP.
155
+* [Silex](https://silex.sensiolabs.org/) - A micro framework built around Symfony components.
156
+* [Slim](https://www.slimframework.com/) - Another simple micro framework.
144
 
157
 
145
 ## Micro Framework Extras
158
 ## Micro Framework Extras
146
 *Extras related to micro frameworks and routers.*
159
 *Extras related to micro frameworks and routers.*
153
 ## Routers
166
 ## Routers
154
 *Libraries for handling application routing.*
167
 *Libraries for handling application routing.*
155
 
168
 
169
+* [Aura.Router](https://github.com/auraphp/Aura.Router) - A full-featured routing library.
156
 * [Fast Route](https://github.com/nikic/FastRoute) - A fast routing library.
170
 * [Fast Route](https://github.com/nikic/FastRoute) - A fast routing library.
157
 * [Klein](https://github.com/klein/klein.php) - A flexible router.
171
 * [Klein](https://github.com/klein/klein.php) - A flexible router.
158
 * [Pux](https://github.com/c9s/Pux) - Another fast routing library.
172
 * [Pux](https://github.com/c9s/Pux) - Another fast routing library.
161
 ## Templating
175
 ## Templating
162
 *Libraries and tools for templating and lexing.*
176
 *Libraries and tools for templating and lexing.*
163
 
177
 
178
+* [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.
164
 * [Foil](https://github.com/FoilPHP/Foil) - Another native PHP templating library.
179
 * [Foil](https://github.com/FoilPHP/Foil) - Another native PHP templating library.
165
 * [Lex](https://github.com/pyrocms/lex) - A lightweight template parser.
180
 * [Lex](https://github.com/pyrocms/lex) - A lightweight template parser.
166
 * [MtHaml](https://github.com/arnaud-lb/MtHaml) - A PHP implementation of the HAML template language.
181
 * [MtHaml](https://github.com/arnaud-lb/MtHaml) - A PHP implementation of the HAML template language.
169
 * [PHPTAL](http://phptal.org/) - A PHP implementation of the [TAL](https://en.wikipedia.org/wiki/Template_Attribute_Language) templating language.
184
 * [PHPTAL](http://phptal.org/) - A PHP implementation of the [TAL](https://en.wikipedia.org/wiki/Template_Attribute_Language) templating language.
170
 * [Plates](http://platesphp.com/) - A native PHP templating library.
185
 * [Plates](http://platesphp.com/) - A native PHP templating library.
171
 * [Smarty](http://www.smarty.net/) - A template engine to complement PHP.
186
 * [Smarty](http://www.smarty.net/) - A template engine to complement PHP.
172
-* [Twig](http://twig.sensiolabs.org/) - A comprehensive templating language.
173
-* [Tale Jade](http://jade.talesoft.io/) - A PHP implementation of the Jade template language.
187
+* [Twig](https://twig.sensiolabs.org/) - A comprehensive templating language.
188
+* [Tale Jade](https://github.com/Talesoft/tale-jade) - A PHP implementation of the Jade template language.
174
 
189
 
175
 ## Static Site Generators
190
 ## Static Site Generators
176
 *Tools for pre-processing content to generate web pages.*
191
 *Tools for pre-processing content to generate web pages.*
201
 ## Middlewares
216
 ## Middlewares
202
 *Libraries for building application using middlewares.*
217
 *Libraries for building application using middlewares.*
203
 
218
 
219
+* [Expressive](https://zendframework.github.io/zend-expressive/) - PSR-7 Middleware framework from Zend.
204
 * [PSR7-Middlewares](https://github.com/oscarotero/psr7-middlewares) - Inspiring collection of handy middlewares.
220
 * [PSR7-Middlewares](https://github.com/oscarotero/psr7-middlewares) - Inspiring collection of handy middlewares.
205
-* [Relay](https://github.com/relayphp/Relay.Relay) - A PHP 5.5 PSR-7 middleware dispatcher
206
-* [Slim Middleware](https://github.com/slimphp/Slim-Middleware) - A collection of custom middleware for Slim.
221
+* [Relay](https://github.com/relayphp/Relay.Relay) - A PHP 5.5 PSR-7 middleware dispatcher.
207
 * [Stack](https://github.com/stackphp) - A library of stackable middleware for Silex/Symfony.
222
 * [Stack](https://github.com/stackphp) - A library of stackable middleware for Silex/Symfony.
208
-* [zend-stratigility](https://github.com/zendframework/zend-stratigility) - Middleware for PHP built on top of PSR-7
223
+* [zend-stratigility](https://github.com/zendframework/zend-stratigility) - Middleware for PHP built on top of PSR-7.
209
 
224
 
210
 ## URL
225
 ## URL
211
 *Libraries for parsing URLs.*
226
 *Libraries for parsing URLs.*
224
 * [Fetch](https://github.com/tedious/Fetch) - An IMAP library.
239
 * [Fetch](https://github.com/tedious/Fetch) - An IMAP library.
225
 * [Mautic](https://github.com/mautic/mautic) - Email marketing automation
240
 * [Mautic](https://github.com/mautic/mautic) - Email marketing automation
226
 * [PHPMailer](https://github.com/PHPMailer/PHPMailer) - Another mailer solution.
241
 * [PHPMailer](https://github.com/PHPMailer/PHPMailer) - Another mailer solution.
227
-* [Stampie](https://github.com/henrikbjorn/Stampie) - A library for email services such as [SendGrid](http://sendgrid.com), [PostMark](https://postmarkapp.com), [MailGun](http://www.mailgun.com) and [Mandrill](http://www.mandrill.com).
242
+* [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](http://www.mandrill.com).
228
 * [SwiftMailer](http://swiftmailer.org/) - A mailer solution.
243
 * [SwiftMailer](http://swiftmailer.org/) - A mailer solution.
229
 
244
 
230
 ## Files
245
 ## Files
239
 * [Hoa Mime](https://github.com/hoaproject/Mime) - Another MIME detection library.
254
 * [Hoa Mime](https://github.com/hoaproject/Mime) - Another MIME detection library.
240
 * [Lurker](https://github.com/henrikbjorn/Lurker) - A resource tracking library.
255
 * [Lurker](https://github.com/henrikbjorn/Lurker) - A resource tracking library.
241
 * [PHP FFmpeg](https://github.com/PHP-FFmpeg/PHP-FFmpeg/) - A wrapper for the [FFmpeg](http://www.ffmpeg.org/) video library.
256
 * [PHP FFmpeg](https://github.com/PHP-FFmpeg/PHP-FFmpeg/) - A wrapper for the [FFmpeg](http://www.ffmpeg.org/) video library.
257
+* [UnifiedArchive](https://github.com/wapmorgan/UnifiedArchive) - A unified reader and writer of compressed archives.
242
 
258
 
243
 ## Streams
259
 ## Streams
244
 *Libraries for working with streams.*
260
 *Libraries for working with streams.*
248
 ## Dependency Injection
264
 ## Dependency Injection
249
 *Libraries that implement the dependency injection design pattern.*
265
 *Libraries that implement the dependency injection design pattern.*
250
 
266
 
251
-* [Acclimate](https://github.com/jeremeamia/acclimate-container) - A common interface to dependency injection containers and service locators.
267
+* [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.
268
+* [Acclimate](https://github.com/AcclimateContainer/acclimate-container) - A common interface to dependency injection containers and service locators.
252
 * [Auryn](https://github.com/rdlowrey/Auryn) - A recursive dependency injector.
269
 * [Auryn](https://github.com/rdlowrey/Auryn) - A recursive dependency injector.
253
 * [Container](https://github.com/thephpleague/container) - Another flexible dependency injection container.
270
 * [Container](https://github.com/thephpleague/container) - Another flexible dependency injection container.
271
+* [Disco](https://github.com/bitExpert/disco) - A PSR-11 compatible, annotation-based dependency injection container.
254
 * [PHP-DI](http://php-di.org/) - A dependency injection container that supports autowiring.
272
 * [PHP-DI](http://php-di.org/) - A dependency injection container that supports autowiring.
255
-* [Pimple](http://pimple.sensiolabs.org/) - A tiny dependency injection container.
256
-* [Symfony DI](https://github.com/symfony/dependency-injection) - A dependency injection container component (SF2).
273
+* [Pimple](https://pimple.sensiolabs.org/) - A tiny dependency injection container.
274
+* [Symfony DI](https://github.com/symfony/dependency-injection) - A dependency injection container component (SF).
257
 
275
 
258
 ## Imagery
276
 ## Imagery
259
 *Libraries for manipulating images.*
277
 *Libraries for manipulating images.*
265
 * [Image Hash](https://github.com/jenssegers/imagehash) - A library for generating perceptual image hashes.
283
 * [Image Hash](https://github.com/jenssegers/imagehash) - A library for generating perceptual image hashes.
266
 * [Image Optimizer](https://github.com/psliwa/image-optimizer) - A library for optimizing images.
284
 * [Image Optimizer](https://github.com/psliwa/image-optimizer) - A library for optimizing images.
267
 * [Image With Text](https://github.com/nmcteam/image-with-text) - A library for embedding text into images.
285
 * [Image With Text](https://github.com/nmcteam/image-with-text) - A library for embedding text into images.
268
-* [Imagine](http://imagine.readthedocs.org/en/latest/index.html) - An image manipulation library.
286
+* [Imagine](http://imagine.readthedocs.io/en/latest/index.html) - An image manipulation library.
269
 * [Intervention Image](https://github.com/Intervention/image) - Another image manipulation library.
287
 * [Intervention Image](https://github.com/Intervention/image) - Another image manipulation library.
270
 * [PHP Image Workshop](https://github.com/Sybio/ImageWorkshop) - Another image manipulation library.
288
 * [PHP Image Workshop](https://github.com/Sybio/ImageWorkshop) - Another image manipulation library.
271
 
289
 
280
 * [DBUnit](https://github.com/sebastianbergmann/dbunit) - A database testing library for PHPUnit.
298
 * [DBUnit](https://github.com/sebastianbergmann/dbunit) - A database testing library for PHPUnit.
281
 * [Faker](https://github.com/fzaninotto/Faker) - A fake data generator library.
299
 * [Faker](https://github.com/fzaninotto/Faker) - A fake data generator library.
282
 * [HTTP Mock](https://github.com/InterNations/http-mock) - A library for mocking HTTP requests in unit tests.
300
 * [HTTP Mock](https://github.com/InterNations/http-mock) - A library for mocking HTTP requests in unit tests.
283
-* [Kahlan](https://github.com/crysalead/kahlan) - Full stack Unit/BDD testing framework with built-in stub, mock and code-coverage support.
301
+* [Kahlan](https://github.com/kahlan/kahlan) - Full stack Unit/BDD testing framework with built-in stub, mock and code-coverage support.
284
 * [Mink](http://mink.behat.org/en/latest/) - Web acceptance testing.
302
 * [Mink](http://mink.behat.org/en/latest/) - Web acceptance testing.
285
-* [Mockery](https://github.com/padraic/mockery) - A mock object library for testing.
303
+* [Mockery](https://github.com/mockery/mockery) - A mock object library for testing.
286
 * [ParaTest](https://github.com/brianium/paratest) - A parallel testing library for PHPUnit.
304
 * [ParaTest](https://github.com/brianium/paratest) - A parallel testing library for PHPUnit.
287
 * [Peridot](https://github.com/peridot-php/peridot) - An event driven test framework.
305
 * [Peridot](https://github.com/peridot-php/peridot) - An event driven test framework.
288
 * [Phake](https://github.com/mlively/Phake) - Another mock object library for testing.
306
 * [Phake](https://github.com/mlively/Phake) - Another mock object library for testing.
289
 * [Pho](https://github.com/danielstjules/pho) - Another behaviour driven development testing framework.
307
 * [Pho](https://github.com/danielstjules/pho) - Another behaviour driven development testing framework.
308
+* [PHP-Mock](https://github.com/php-mock/php-mock) - A mock library for built-in PHP functions (e.g. time()).
290
 * [PHPSpec](https://github.com/phpspec/phpspec) - A design by specification unit testing library.
309
 * [PHPSpec](https://github.com/phpspec/phpspec) - A design by specification unit testing library.
310
+* [PHPT](https://qa.php.net/write-test.php) - A test tool used by PHP itself.
291
 * [PHPUnit](https://github.com/sebastianbergmann/phpunit) - A unit testing framework.
311
 * [PHPUnit](https://github.com/sebastianbergmann/phpunit) - A unit testing framework.
292
 * [Prophecy](https://github.com/phpspec/prophecy) - A highly opinionated mocking framework.
312
 * [Prophecy](https://github.com/phpspec/prophecy) - A highly opinionated mocking framework.
293
 * [Samsui](https://github.com/mauris/samsui) - Another fake data generator library.
313
 * [Samsui](https://github.com/mauris/samsui) - Another fake data generator library.
297
 ## Continuous Integration
317
 ## Continuous Integration
298
 *Libraries and applications for continuous integration.*
318
 *Libraries and applications for continuous integration.*
299
 
319
 
320
+* [CircleCI](https://circleci.com) - A continuous integration platform.
300
 * [GitlabCi](https://about.gitlab.com/gitlab-ci/) - Let GitLab CI test, build, deploy your code. TravisCi like.
321
 * [GitlabCi](https://about.gitlab.com/gitlab-ci/) - Let GitLab CI test, build, deploy your code. TravisCi like.
301
 * [Jenkins](https://jenkins.io/index.html) - A continous integration platform with [PHP support](http://jenkins-php.org/index.html).
322
 * [Jenkins](https://jenkins.io/index.html) - A continous integration platform with [PHP support](http://jenkins-php.org/index.html).
302
 * [JoliCi](https://github.com/jolicode/JoliCi) - A continuous integration client written in PHP and powered by Docker.
323
 * [JoliCi](https://github.com/jolicode/JoliCi) - A continuous integration client written in PHP and powered by Docker.
303
 * [PHPCI](https://www.phptesting.org/) - An open source continuous integration platform for PHP.
324
 * [PHPCI](https://www.phptesting.org/) - An open source continuous integration platform for PHP.
304
 * [SemaphoreCI](https://semaphoreci.com/) - A continuous integration platform for open source and private projects.
325
 * [SemaphoreCI](https://semaphoreci.com/) - A continuous integration platform for open source and private projects.
305
 * [Shippable](https://app.shippable.com/) - A docker based continious integration platform for open source and private projects.
326
 * [Shippable](https://app.shippable.com/) - A docker based continious integration platform for open source and private projects.
306
-* [Sismo](http://sismo.sensiolabs.org/) - A continuous testing server library.
327
+* [Sismo](https://sismo.sensiolabs.org/) - A continuous testing server library.
307
 * [Travis CI](https://travis-ci.org/) - A continuous integration platform.
328
 * [Travis CI](https://travis-ci.org/) - A continuous integration platform.
308
-* [Wercker](http://wercker.com/) - A continuous integration platform
329
+* [Wercker](http://www.wercker.com/) - A continuous integration platform
309
 
330
 
310
 ## Documentation
331
 ## Documentation
311
 *Libraries for generating project documentation.*
332
 *Libraries for generating project documentation.*
327
 * [PHP IDS](https://github.com/PHPIDS/PHPIDS) - A structured PHP security layer.
348
 * [PHP IDS](https://github.com/PHPIDS/PHPIDS) - A structured PHP security layer.
328
 * [PHP SSH](https://github.com/Herzult/php-ssh) - An experimental object orientated SSH wrapper library.
349
 * [PHP SSH](https://github.com/Herzult/php-ssh) - An experimental object orientated SSH wrapper library.
329
 * [PHPSecLib](http://phpseclib.sourceforge.net/) - A pure PHP secure communications library.
350
 * [PHPSecLib](http://phpseclib.sourceforge.net/) - A pure PHP secure communications library.
351
+* [random_compat](https://github.com/paragonie/random_compat) - PHP 5.x support for `random_bytes()` and `random_int()`
330
 * [RandomLib](https://github.com/ircmaxell/RandomLib) - A library for generating random numbers and strings.
352
 * [RandomLib](https://github.com/ircmaxell/RandomLib) - A library for generating random numbers and strings.
331
 * [SecurityMultiTool](https://github.com/padraic/SecurityMultiTool) - A PHP security library.
353
 * [SecurityMultiTool](https://github.com/padraic/SecurityMultiTool) - A PHP security library.
332
 * [SensioLabs Security Check](https://security.sensiolabs.org/) - A web tool to check your Composer dependencies for security advisories.
354
 * [SensioLabs Security Check](https://security.sensiolabs.org/) - A web tool to check your Composer dependencies for security advisories.
333
 * [TCrypto](https://github.com/timoh6/TCrypto) - A simple encrypted key-value storage library.
355
 * [TCrypto](https://github.com/timoh6/TCrypto) - A simple encrypted key-value storage library.
334
-* [True Random](https://github.com/pixeloution/true-random) - A library that generates random numbers using [www.random.org](https://www.random.org/).
335
-* [VAddy](http://vaddy.net) - A continuous security testing platform for web applications.
356
+* [VAddy](https://vaddy.net/) - A continuous security testing platform for web applications.
336
 * [Zed](https://www.owasp.org/index.php/OWASP_Zed_Attack_Proxy_Project) - An integrated penetration testing tool for web applications.
357
 * [Zed](https://www.owasp.org/index.php/OWASP_Zed_Attack_Proxy_Project) - An integrated penetration testing tool for web applications.
337
 
358
 
338
 ## Passwords
359
 ## Passwords
351
 *Libraries and tools for analysing, parsing and manipulating codebases.*
372
 *Libraries and tools for analysing, parsing and manipulating codebases.*
352
 
373
 
353
 * [Athletic](https://github.com/polyfractal/athletic) - An annotation based benchmark framework.
374
 * [Athletic](https://github.com/polyfractal/athletic) - An annotation based benchmark framework.
375
+* [Better Reflection](https://github.com/Roave/BetterReflection) - AST-based reflection library that allows analysis and manipulation of code
354
 * [Code Climate](https://codeclimate.com) - An automated code review.
376
 * [Code Climate](https://codeclimate.com) - An automated code review.
355
 * [Dissect](https://github.com/jakubledl/dissect) - A set of tools for lexical and syntactical analysis.
377
 * [Dissect](https://github.com/jakubledl/dissect) - A set of tools for lexical and syntactical analysis.
356
-* [Exakat](http://www.exakat.io) - A static analysis engine for PHP.
378
+* [Exakat](https://github.com/exakat/exakat) - A static analysis engine for PHP.
357
 * [GrumPHP](https://github.com/phpro/grumphp) - A composer plugin to defend code quality.
379
 * [GrumPHP](https://github.com/phpro/grumphp) - A composer plugin to defend code quality.
358
 * [Mondrian](https://github.com/Trismegiste/Mondrian) - A code analysis tool using Graph Theory.
380
 * [Mondrian](https://github.com/Trismegiste/Mondrian) - A code analysis tool using Graph Theory.
359
 * [PHP Analyser](https://github.com/scrutinizer-ci/php-analyzer) - A library for analysing PHP code to find bugs and errors.
381
 * [PHP Analyser](https://github.com/scrutinizer-ci/php-analyzer) - A library for analysing PHP code to find bugs and errors.
362
 * [PHP Manipulator](https://github.com/schmittjoh/php-manipulator) - A library for analysing and modifying PHP Source Code.
384
 * [PHP Manipulator](https://github.com/schmittjoh/php-manipulator) - A library for analysing and modifying PHP Source Code.
363
 * [PHP Mess Detector](https://phpmd.org/) - A library that scans code for bugs, sub-optimal code, unused parameters and more.
385
 * [PHP Mess Detector](https://phpmd.org/) - A library that scans code for bugs, sub-optimal code, unused parameters and more.
364
 * [PHP Metrics](https://github.com/phpmetrics/PhpMetrics) - A static metric library.
386
 * [PHP Metrics](https://github.com/phpmetrics/PhpMetrics) - A static metric library.
387
+* [PHP Migration](https://github.com/monque/PHP-Migration) - A static analyzer for PHP version migration.
365
 * [PHP Parser](https://github.com/nikic/PHP-Parser) - A PHP parser written in PHP.
388
 * [PHP Parser](https://github.com/nikic/PHP-Parser) - A PHP parser written in PHP.
366
 * [PHP Refactoring Browser](https://github.com/QafooLabs/php-refactoring-browser) - A command line utility for refactoring PHP code.
389
 * [PHP Refactoring Browser](https://github.com/QafooLabs/php-refactoring-browser) - A command line utility for refactoring PHP code.
367
 * [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.
390
 * [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.
391
+* [phan](https://github.com/etsy/phan) - A static analyzer based on PHP 7+ and the php-ast extension.
368
 * [PHPCheckstyle](https://github.com/PHPCheckstyle/phpcheckstyle) - A tool to help adhere to certain coding conventions.
392
 * [PHPCheckstyle](https://github.com/PHPCheckstyle/phpcheckstyle) - A tool to help adhere to certain coding conventions.
369
 * [PHPCPD](https://github.com/sebastianbergmann/phpcpd) - A library that detects copied and pasted code.
393
 * [PHPCPD](https://github.com/sebastianbergmann/phpcpd) - A library that detects copied and pasted code.
370
 * [PhpDependencyAnalysis](https://github.com/mamuz/PhpDependencyAnalysis) - A tool to create customisable dependency graphs.
394
 * [PhpDependencyAnalysis](https://github.com/mamuz/PhpDependencyAnalysis) - A tool to create customisable dependency graphs.
371
 * [PHPLOC](https://github.com/sebastianbergmann/phploc) - A tool for quickly measuring the size of a PHP project.
395
 * [PHPLOC](https://github.com/sebastianbergmann/phploc) - A tool for quickly measuring the size of a PHP project.
372
 * [PHPQA](https://github.com/EdgedesignCZ/phpqa) - A tool for running QA tools (phploc, phpcpd, phpcs, pdepend, phpmd, phpmetrics).
396
 * [PHPQA](https://github.com/EdgedesignCZ/phpqa) - A tool for running QA tools (phploc, phpcpd, phpcs, pdepend, phpmd, phpmetrics).
373
 * [PHPPHP](https://github.com/ircmaxell/PHPPHP) - A PHP VM implementation in PHP.
397
 * [PHPPHP](https://github.com/ircmaxell/PHPPHP) - A PHP VM implementation in PHP.
374
-* [PHPSandbox](https://github.com/fieryprophet/php-sandbox) - A PHP sandbox environment.
398
+* [PHPSandbox](https://github.com/Corveda/PHPSandbox) - A PHP sandbox environment.
399
+* [PHPStan](https://github.com/phpstan/phpstan) - A PHP Static Analysis Tool.
400
+* [Qafoo Quality Analyzer](https://github.com/Qafoo/QualityAnalyzer) - A tool to visualize metrics and source code.
375
 * [Scrutinizer](https://scrutinizer-ci.com/) - A web tool to scrutinise PHP code.
401
 * [Scrutinizer](https://scrutinizer-ci.com/) - A web tool to scrutinise PHP code.
376
 * [UBench](https://github.com/devster/ubench) - A simple micro benchmark library.
402
 * [UBench](https://github.com/devster/ubench) - A simple micro benchmark library.
377
 
403
 
385
 * [Galapagos](https://github.com/endel/galapagos) - Evolutionary language transformation.
411
 * [Galapagos](https://github.com/endel/galapagos) - Evolutionary language transformation.
386
 * [Iter](https://github.com/nikic/iter) - A library that provides iteration primitives using generators.
412
 * [Iter](https://github.com/nikic/iter) - A library that provides iteration primitives using generators.
387
 * [Monad PHP](https://github.com/ircmaxell/monad-php) - A simple Monad library.
413
 * [Monad PHP](https://github.com/ircmaxell/monad-php) - A simple Monad library.
388
-* [Patchwork](http://antecedent.github.io/patchwork/) - A library for redefining userland functions.
414
+* [Patchwork](http://patchwork2.org/) - A library for redefining userland functions.
389
 * [PHP Option](https://github.com/schmittjoh/php-option) - An option type library.
415
 * [PHP Option](https://github.com/schmittjoh/php-option) - An option type library.
390
 * [Pipeline](https://github.com/thephpleague/pipeline) - A pipeline pattern implementation.
416
 * [Pipeline](https://github.com/thephpleague/pipeline) - A pipeline pattern implementation.
391
 * [Ruler](https://github.com/bobthecow/Ruler) - A simple stateless production rules engine.
417
 * [Ruler](https://github.com/bobthecow/Ruler) - A simple stateless production rules engine.
397
 * [APM](http://pecl.php.net/package/APM) - Monitoring extension collecting errors and statistics into SQLite/MySQL/StatsD.
423
 * [APM](http://pecl.php.net/package/APM) - Monitoring extension collecting errors and statistics into SQLite/MySQL/StatsD.
398
 * [Barbushin PHP Console](https://github.com/barbushin/php-console) - Another web debugging console using Google Chrome.
424
 * [Barbushin PHP Console](https://github.com/barbushin/php-console) - Another web debugging console using Google Chrome.
399
 * [Blackfire.io](https://blackfire.io) - A low-overhead code profiler.
425
 * [Blackfire.io](https://blackfire.io) - A low-overhead code profiler.
400
-* [Kint](https://github.com/raveren/kint) - A debugging and profiling tool.
426
+* [Kint](https://github.com/kint-php/kint) - A debugging and profiling tool.
401
 * [PHP Console](https://github.com/Seldaek/php-console) - A web debugging console.
427
 * [PHP Console](https://github.com/Seldaek/php-console) - A web debugging console.
402
 * [PHP Debug Bar](http://phpdebugbar.com/) - A debugging toolbar.
428
 * [PHP Debug Bar](http://phpdebugbar.com/) - A debugging toolbar.
403
 * [PHPBench](https://github.com/phpbench/phpbench) - A benchmarking Framework.
429
 * [PHPBench](https://github.com/phpbench/phpbench) - A benchmarking Framework.
413
 
439
 
414
 * [Bob](https://github.com/CHH/bob) - A simple project automation tool.
440
 * [Bob](https://github.com/CHH/bob) - A simple project automation tool.
415
 * [Box](https://github.com/box-project/box2) - A utility to build PHAR files.
441
 * [Box](https://github.com/box-project/box2) - A utility to build PHAR files.
442
+* [Construct](https://github.com/jonathantorres/construct) - A PHP project/micro-package generator.
416
 * [Phake](https://github.com/jaz303/phake) - A rake PHP clone library.
443
 * [Phake](https://github.com/jaz303/phake) - A rake PHP clone library.
417
-* [Phing](http://www.phing.info/) - A PHP project build system inspired by Apache Ant.
444
+* [Phing](https://www.phing.info/) - A PHP project build system inspired by Apache Ant.
418
 
445
 
419
 ## Task Runners
446
 ## Task Runners
420
 *Libraries for automating and running tasks.*
447
 *Libraries for automating and running tasks.*
421
 
448
 
422
 * [Bldr](http://bldr.io/) - A PHP Task runner built on Symfony components.
449
 * [Bldr](http://bldr.io/) - A PHP Task runner built on Symfony components.
423
 * [Jobby](https://github.com/jobbyphp/jobby) - A PHP cron job manager without modifying crontab.
450
 * [Jobby](https://github.com/jobbyphp/jobby) - A PHP cron job manager without modifying crontab.
424
-* [Robo](https://github.com/Codegyre/Robo) - A PHP Task runner with object-orientated configurations.
451
+* [Robo](https://github.com/consolidation/Robo) - A PHP Task runner with object-orientated configurations.
425
 * [Task](http://taskphp.github.io/) - A pure PHP task runner inspired by Grunt and Gulp.
452
 * [Task](http://taskphp.github.io/) - A pure PHP task runner inspired by Grunt and Gulp.
426
 
453
 
427
 ## Navigation
454
 ## Navigation
433
 ## Asset Management
460
 ## Asset Management
434
 *Tools for managing, compressing and minifying website assets.*
461
 *Tools for managing, compressing and minifying website assets.*
435
 
462
 
436
-* [Assetic](https://github.com/kriswallsmith/assetic) - An asset manager pipeline library.
437
 * [JShrink](https://github.com/tedious/JShrink) - A JavaScript minifier library.
463
 * [JShrink](https://github.com/tedious/JShrink) - A JavaScript minifier library.
438
 * [Munee](https://github.com/meenie/munee) - An asset optimiser library.
464
 * [Munee](https://github.com/meenie/munee) - An asset optimiser library.
439
-* [Pipe](https://github.com/CHH/pipe) - Another asset manager pipeline library.
440
 * [Puli](https://github.com/puli/repository) - A library for determining assets absolute paths.
465
 * [Puli](https://github.com/puli/repository) - A library for determining assets absolute paths.
466
+* [BowerPHP](https://github.com/Bee-Lab/bowerphp) - A PHP implementation of Bower. A package manager for the web
441
 
467
 
442
 ## Geolocation
468
 ## Geolocation
443
 *Libraries for geocoding addresses and working with latitudes and longitudes.*
469
 *Libraries for geocoding addresses and working with latitudes and longitudes.*
452
 
478
 
453
 * [CalendR](http://yohan.giarel.li/CalendR/) - A calendar management library.
479
 * [CalendR](http://yohan.giarel.li/CalendR/) - A calendar management library.
454
 * [Carbon](https://github.com/briannesbitt/Carbon) - A simple DateTime API extension.
480
 * [Carbon](https://github.com/briannesbitt/Carbon) - A simple DateTime API extension.
481
+* [Chronos](https://github.com/cakephp/chronos) - A DateTime API extension supporting both mutable and immutable date/time.
455
 * [ExpressiveDate](https://github.com/jasonlewis/expressive-date) - Another DateTime API extension.
482
 * [ExpressiveDate](https://github.com/jasonlewis/expressive-date) - Another DateTime API extension.
456
 * [Moment.php](https://github.com/fightbulc/moment.php) - Moment.js inspired PHP DateTime handler with i18n support.
483
 * [Moment.php](https://github.com/fightbulc/moment.php) - Moment.js inspired PHP DateTime handler with i18n support.
484
+* [Yasumi](https://github.com/azuyalabs/yasumi) - An library to help you calculate the dates and names of holidays.
457
 
485
 
458
 ## Event
486
 ## Event
459
 *Libraries that are event-driven or implement non-blocking event loops.*
487
 *Libraries that are event-driven or implement non-blocking event loops.*
460
 
488
 
461
 * [Amp](https://github.com/amphp/amp) - An event driven non-blocking I/O library.
489
 * [Amp](https://github.com/amphp/amp) - An event driven non-blocking I/O library.
462
-* [Broadway](https://github.com/qandidate-labs/broadway) - An event source and CQRS library.
490
+* [Broadway](https://github.com/broadway/broadway) - An event source and CQRS library.
463
 * [Cake Event](https://github.com/cakephp/event) - An event dispatcher library (CP).
491
 * [Cake Event](https://github.com/cakephp/event) - An event dispatcher library (CP).
464
 * [Elephant.io](https://github.com/Wisembly/Elephant.io) - Yet another web socket library.
492
 * [Elephant.io](https://github.com/Wisembly/Elephant.io) - Yet another web socket library.
465
 * [Evenement](https://github.com/igorw/evenement) - An event dispatcher library.
493
 * [Evenement](https://github.com/igorw/evenement) - An event dispatcher library.
466
 * [Event](https://github.com/thephpleague/event) - An event library with a focus on domain events.
494
 * [Event](https://github.com/thephpleague/event) - An event library with a focus on domain events.
467
 * [Hoa EventSource](https://github.com/hoaproject/Eventsource) - An event source library.
495
 * [Hoa EventSource](https://github.com/hoaproject/Eventsource) - An event source library.
468
 * [Hoa WebSocket](https://github.com/hoaproject/Websocket) - Another web socket library.
496
 * [Hoa WebSocket](https://github.com/hoaproject/Websocket) - Another web socket library.
469
-* [Icicle](https://github.com/icicleio/icicle) - An asynchronous library with coroutines, non-blocking I/O, and multithreading.
470
 * [Prooph Event Store](https://github.com/prooph/event-store) - An event source component to persist event messages
497
 * [Prooph Event Store](https://github.com/prooph/event-store) - An event source component to persist event messages
471
 * [Ratchet](https://github.com/ratchetphp/Ratchet) - A web socket library.
498
 * [Ratchet](https://github.com/ratchetphp/Ratchet) - A web socket library.
472
 * [React](https://github.com/reactphp/react) - An event driven non-blocking I/O library.
499
 * [React](https://github.com/reactphp/react) - An event driven non-blocking I/O library.
486
 * [Money](https://github.com/moneyphp/money) - A PHP implementation of Fowler's money pattern.
513
 * [Money](https://github.com/moneyphp/money) - A PHP implementation of Fowler's money pattern.
487
 * [OmniPay](https://github.com/thephpleague/omnipay) - A framework agnostic multi-gateway payment processing library.
514
 * [OmniPay](https://github.com/thephpleague/omnipay) - A framework agnostic multi-gateway payment processing library.
488
 * [Payum](https://github.com/payum/payum) - A payment abstraction library.
515
 * [Payum](https://github.com/payum/payum) - A payment abstraction library.
489
-* [Sebastian Money](https://github.com/sebastianbergmann/money) - Another library for working with monetary values.
490
 * [Shopware](https://github.com/shopware/shopware) - Highly customizable e-commerce software
516
 * [Shopware](https://github.com/shopware/shopware) - Highly customizable e-commerce software
491
 * [Swap](https://github.com/florianv/swap) - An exchange rates library.
517
 * [Swap](https://github.com/florianv/swap) - An exchange rates library.
492
 * [Sylius](http://sylius.org/) - An open source e-commerce solution.
518
 * [Sylius](http://sylius.org/) - An open source e-commerce solution.
503
 *Libraries for working with office suite documents.*
529
 *Libraries for working with office suite documents.*
504
 
530
 
505
 * [ExcelAnt](https://github.com/Wisembly/ExcelAnt) - A library for manipulating Microsoft Excel documents.
531
 * [ExcelAnt](https://github.com/Wisembly/ExcelAnt) - A library for manipulating Microsoft Excel documents.
506
-* [PHPExcel](https://github.com/PHPOffice/PHPExcel) - A library for working with Microsoft Excel documents.
507
 * [PHPPowerPoint](https://github.com/PHPOffice/PHPPresentation) - A library for working with Microsoft PowerPoint Presentations.
532
 * [PHPPowerPoint](https://github.com/PHPOffice/PHPPresentation) - A library for working with Microsoft PowerPoint Presentations.
508
 * [PHPWord](https://github.com/PHPOffice/PHPWord) - A library for working with Microsoft Word documents.
533
 * [PHPWord](https://github.com/PHPOffice/PHPWord) - A library for working with Microsoft Word documents.
534
+* [PHPSpreadsheet](https://github.com/PHPOffice/PhpSpreadsheet) - A pure PHP library for reading and writing spreadsheet files (successor of PHPExcel)
509
 
535
 
510
 ## Database
536
 ## Database
511
 *Libraries for interacting with databases using object-relational mapping (ORM) or datamapping techniques.*
537
 *Libraries for interacting with databases using object-relational mapping (ORM) or datamapping techniques.*
512
 
538
 
539
+* [Aura.Sql](https://github.com/auraphp/Aura.Sql) - Provides an extension to the native PDO along with a profiler and connection locator.
540
+* [Aura.SqlQuery](https://github.com/auraphp/Aura.SqlQuery) - Independent query builders for MySQL, PostgreSQL, SQLite, and Microsoft SQL Server. Edit
513
 * [Baum](https://github.com/etrepat/baum) - A nested set implementation for Eloquent.
541
 * [Baum](https://github.com/etrepat/baum) - A nested set implementation for Eloquent.
514
 * [Cake ORM](https://github.com/cakephp/orm) - Object-Relational Mapper, implemented using the DataMapper pattern (CP).
542
 * [Cake ORM](https://github.com/cakephp/orm) - Object-Relational Mapper, implemented using the DataMapper pattern (CP).
515
 * [Doctrine Extensions](https://github.com/Atlantic18/DoctrineExtensions) - A collection of Doctrine behavioural extensions.
543
 * [Doctrine Extensions](https://github.com/Atlantic18/DoctrineExtensions) - A collection of Doctrine behavioural extensions.
516
 * [Doctrine](http://www.doctrine-project.org/) - A comprehensive DBAL and ORM.
544
 * [Doctrine](http://www.doctrine-project.org/) - A comprehensive DBAL and ORM.
517
 * [Eloquent](https://github.com/illuminate/database) - A simple ORM (L5).
545
 * [Eloquent](https://github.com/illuminate/database) - A simple ORM (L5).
518
-* [LazyRecord](https://github.com/c9s/LazyRecord) - A fast ORM designed for simplicity, extendability and performance.
546
+* [LazyRecord](https://github.com/corneltek/LazyRecord) - A fast ORM designed for simplicity, extendability and performance.
519
 * [Pomm](https://github.com/chanmix51/Pomm) - An Object Model Manager for PostgreSQL.
547
 * [Pomm](https://github.com/chanmix51/Pomm) - An Object Model Manager for PostgreSQL.
520
 * [Propel](http://propelorm.org/) - A fast ORM, migration library and query builder.
548
 * [Propel](http://propelorm.org/) - A fast ORM, migration library and query builder.
521
 * [ProxyManager](https://github.com/Ocramius/ProxyManager) - A set of utilities to generate proxy objects for data mappers.
549
 * [ProxyManager](https://github.com/Ocramius/ProxyManager) - A set of utilities to generate proxy objects for data mappers.
522
 * [RedBean](http://redbeanphp.com/index.php) - A lightweight, configuration-less ORM.
550
 * [RedBean](http://redbeanphp.com/index.php) - A lightweight, configuration-less ORM.
523
-* [Spot2](https://github.com/vlucas/spot2) - A MySQL datamapper ORM.
551
+* [Spot2](https://github.com/spotorm/spot2) - A MySQL datamapper ORM.
524
 
552
 
525
 ## Migrations
553
 ## Migrations
526
 Libraries to help manage database schemas and migrations.
554
 Libraries to help manage database schemas and migrations.
527
 
555
 
528
 * [Doctrine Migrations](http://docs.doctrine-project.org/projects/doctrine-migrations/en/latest/toc.html) - A migration library for Doctrine.
556
 * [Doctrine Migrations](http://docs.doctrine-project.org/projects/doctrine-migrations/en/latest/toc.html) - A migration library for Doctrine.
529
 * [Migrations](https://github.com/icomefromthenet/Migrations) - A migration management library.
557
 * [Migrations](https://github.com/icomefromthenet/Migrations) - A migration management library.
530
-* [Phinx](https://github.com/robmorgan/phinx) - Another database migration library.
558
+* [Phinx](https://github.com/cakephp/phinx) - Another database migration library.
531
 * [PHPMig](https://github.com/davedevelopment/phpmig) - Another migration management library.
559
 * [PHPMig](https://github.com/davedevelopment/phpmig) - Another migration management library.
532
 * [Ruckusing](https://github.com/ruckus/ruckusing-migrations) - Database migrations for PHP ala ActiveRecord Migrations with support for MySQL, Postgres, SQLite.
560
 * [Ruckusing](https://github.com/ruckus/ruckusing-migrations) - Database migrations for PHP ala ActiveRecord Migrations with support for MySQL, Postgres, SQLite.
533
 
561
 
561
 ## Command Line
589
 ## Command Line
562
 *Libraries related to the command line.*
590
 *Libraries related to the command line.*
563
 
591
 
592
+* [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.
564
 * [Boris](https://github.com/borisrepl/boris) - A tiny PHP REPL.
593
 * [Boris](https://github.com/borisrepl/boris) - A tiny PHP REPL.
565
 * [Cilex](https://github.com/Cilex/Cilex) - A micro framework for building command line tools.
594
 * [Cilex](https://github.com/Cilex/Cilex) - A micro framework for building command line tools.
566
 * [CLI Menu](https://github.com/php-school/cli-menu) - A library for building CLI menus.
595
 * [CLI Menu](https://github.com/php-school/cli-menu) - A library for building CLI menus.
568
 * [CLImate](https://github.com/thephpleague/climate) - A library for outputting colours and special formatting.
597
 * [CLImate](https://github.com/thephpleague/climate) - A library for outputting colours and special formatting.
569
 * [Commando](https://github.com/nategood/commando) - Another simple command line opt parser.
598
 * [Commando](https://github.com/nategood/commando) - Another simple command line opt parser.
570
 * [Cron Expression](https://github.com/mtdowling/cron-expression) - A library to calculate cron run dates.
599
 * [Cron Expression](https://github.com/mtdowling/cron-expression) - A library to calculate cron run dates.
571
-* [GetOpt](https://github.com/ulrichsg/getopt-php) - A command line opt parser.
600
+* [GetOpt](https://github.com/getopt-php/getopt-php) - A command line opt parser.
572
 * [GetOptionKit](https://github.com/c9s/GetOptionKit) - Another command line opt parser.
601
 * [GetOptionKit](https://github.com/c9s/GetOptionKit) - Another command line opt parser.
573
 * [Hoa Console](https://github.com/hoaproject/Console) - Another command line library.
602
 * [Hoa Console](https://github.com/hoaproject/Console) - Another command line library.
574
 * [OptParse](https://github.com/CHH/optparse) - Another command line opt parser.
603
 * [OptParse](https://github.com/CHH/optparse) - Another command line opt parser.
575
 * [Pecan](https://github.com/mcrumm/pecan) - An event-driven, non-blocking shell.
604
 * [Pecan](https://github.com/mcrumm/pecan) - An event-driven, non-blocking shell.
576
 * [PsySH](https://github.com/bobthecow/psysh) - Another PHP REPL.
605
 * [PsySH](https://github.com/bobthecow/psysh) - Another PHP REPL.
577
 * [ShellWrap](https://github.com/MrRio/shellwrap) - A simple command line wrapper library.
606
 * [ShellWrap](https://github.com/MrRio/shellwrap) - A simple command line wrapper library.
578
-* [Shunt](https://github.com/thephpleague/shunt) - A library for running commands in parallel on multiple remote machines.
579
 
607
 
580
 ## Authentication and Authorization
608
 ## Authentication and Authorization
581
 *Libraries for implementing user authentication and authorization.*
609
 *Libraries for implementing user authentication and authorization.*
582
 
610
 
611
+* [Aura.Auth](https://github.com/auraphp/Aura.Auth) - Provides authentication functionality and session tracking using various adapters.
583
 * [Hawk](https://github.com/dflydev/dflydev-hawk) - A Hawk HTTP authentication library.
612
 * [Hawk](https://github.com/dflydev/dflydev-hawk) - A Hawk HTTP authentication library.
584
-* [HybridAuth](https://github.com/hybridauth/hybridauth) - An open source social sign on library.
613
+* [SocialConnect Auth](https://github.com/socialConnect/auth) - An open source social sign (OAuth1\OAuth2\OpenID\OpenIDConnect).
585
 * [Json Web Token](https://github.com/lcobucci/jwt) - Json Tokens to authenticate and transmit information.
614
 * [Json Web Token](https://github.com/lcobucci/jwt) - Json Tokens to authenticate and transmit information.
586
 * [Lock](https://github.com/BeatSwitch/lock) - A library for implementing Access Control Lists (ACL) systems.
615
 * [Lock](https://github.com/BeatSwitch/lock) - A library for implementing Access Control Lists (ACL) systems.
587
 * [OAuth 1.0 Client](https://github.com/thephpleague/oauth1-client) - An OAuth 1.0 client library.
616
 * [OAuth 1.0 Client](https://github.com/thephpleague/oauth1-client) - An OAuth 1.0 client library.
592
 * [PHP oAuthLib](https://github.com/Lusitanian/PHPoAuthLib) - Another OAuth library.
621
 * [PHP oAuthLib](https://github.com/Lusitanian/PHPoAuthLib) - Another OAuth library.
593
 * [Sentinel Social](https://cartalyst.com/manual/sentinel-social/2.0) - A library for social network authentication.
622
 * [Sentinel Social](https://cartalyst.com/manual/sentinel-social/2.0) - A library for social network authentication.
594
 * [Sentinel](https://cartalyst.com/manual/sentinel/2.0) - A framework agnostic authentication & authorisation library.
623
 * [Sentinel](https://cartalyst.com/manual/sentinel/2.0) - A framework agnostic authentication & authorisation library.
595
-* [TwitterOAuth](https://github.com/ruudk/twitteroauth) - A Twitter OAuth library.
624
+* [TwitterOAuth](https://github.com/abraham/twitteroauth) - A Twitter OAuth library.
596
 * [TwitterSDK](https://github.com/lyrixx/twitter-sdk) - A fully tested Twitter SDK.
625
 * [TwitterSDK](https://github.com/lyrixx/twitter-sdk) - A fully tested Twitter SDK.
597
 
626
 
598
 ## Markup
627
 ## Markup
615
 * [ANSI to HTML5](https://github.com/sensiolabs/ansi-to-html) - An ANSI to HTML5 converter library.
644
 * [ANSI to HTML5](https://github.com/sensiolabs/ansi-to-html) - An ANSI to HTML5 converter library.
616
 * [Color Jizz](https://github.com/mikeemoo/ColorJizz-PHP) - A library for manipulating and converting colours.
645
 * [Color Jizz](https://github.com/mikeemoo/ColorJizz-PHP) - A library for manipulating and converting colours.
617
 * [Device Detector](https://github.com/piwik/device-detector) - Another library for parsing user agent strings.
646
 * [Device Detector](https://github.com/piwik/device-detector) - Another library for parsing user agent strings.
618
-* [Hoa String](https://github.com/hoaproject/String) - Another UTF-8 string library.
647
+* [Hoa String](https://github.com/hoaproject/Ustring) - Another UTF-8 string library.
619
 * [Jieba-PHP](https://github.com/fukuball/jieba-php) - A PHP port of Python's jieba. Chinese text segmentation for natural language processing.
648
 * [Jieba-PHP](https://github.com/fukuball/jieba-php) - A PHP port of Python's jieba. Chinese text segmentation for natural language processing.
620
 * [Mobile-Detect](https://github.com/serbanghita/Mobile-Detect) - A lightweight PHP class for detecting mobile devices (including tablets).
649
 * [Mobile-Detect](https://github.com/serbanghita/Mobile-Detect) - A lightweight PHP class for detecting mobile devices (including tablets).
621
 * [Patchwork UTF-8](https://github.com/nicolas-grekas/Patchwork-UTF8) - A portable library for working with UTF-8 strings.
650
 * [Patchwork UTF-8](https://github.com/nicolas-grekas/Patchwork-UTF8) - A portable library for working with UTF-8 strings.
640
 ## Filtering and Validation
669
 ## Filtering and Validation
641
 *Libraries for filtering and validating data.*
670
 *Libraries for filtering and validating data.*
642
 
671
 
672
+* [Aura.Filter](https://github.com/auraphp/Aura.Filter) - Provides tools to validate and sanitize objects and arrays.
643
 * [Cake Validation](https://github.com/cakephp/validation) - Another validation library (CP).
673
 * [Cake Validation](https://github.com/cakephp/validation) - Another validation library (CP).
644
 * [DMS Filter](https://github.com/rdohms/DMS-Filter) - An annotation filtering library.
674
 * [DMS Filter](https://github.com/rdohms/DMS-Filter) - An annotation filtering library.
645
 * [Filterus](https://github.com/ircmaxell/filterus) - A simple PHP filtering library.
675
 * [Filterus](https://github.com/ircmaxell/filterus) - A simple PHP filtering library.
646
-* [ISO-codes](https://github.com/ronanguilloux/IsoCodes) - A library for validating various ISO and ZIP codes (IBAN, SWIFT/BIC, BBAN, VAT, SSN, UKNIN).
676
+* [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
647
 * [MetaYaml](https://github.com/romaricdrigon/MetaYaml) - A schema validation library that supports YAML, JSON and XML.
677
 * [MetaYaml](https://github.com/romaricdrigon/MetaYaml) - A schema validation library that supports YAML, JSON and XML.
648
 * [Respect Validation](https://github.com/Respect/Validation) - A simple validation library.
678
 * [Respect Validation](https://github.com/Respect/Validation) - A simple validation library.
649
 * [Upload](https://github.com/brandonsavage/Upload) - A library for handling file uploads and validation.
679
 * [Upload](https://github.com/brandonsavage/Upload) - A library for handling file uploads and validation.
666
 *Libraries for caching data.*
696
 *Libraries for caching data.*
667
 
697
 
668
 * [Alternative PHP Cache (APC)](http://php.net/manual/en/book.apc.php) - Open opcode cache for PHP.
698
 * [Alternative PHP Cache (APC)](http://php.net/manual/en/book.apc.php) - Open opcode cache for PHP.
669
-* [APIx Cache](https://github.com/frqnck/apix-cache) - A thin PSR-6 cache wrapper to various caching backends emphasising cache tagging and indexing.
699
+* [APIx Cache](https://github.com/apix/cache) - A thin PSR-6 cache wrapper to various caching backends emphasising cache tagging and indexing.
670
 * [CacheTool](https://github.com/gordalina/cachetool) - A tool to clear APC/opcode caches from the command line.
700
 * [CacheTool](https://github.com/gordalina/cachetool) - A tool to clear APC/opcode caches from the command line.
671
 * [Cake Cache](https://github.com/cakephp/cache) - A caching library (CP).
701
 * [Cake Cache](https://github.com/cakephp/cache) - A caching library (CP).
672
 * [Doctrine Cache](https://github.com/doctrine/cache) - A caching library.
702
 * [Doctrine Cache](https://github.com/doctrine/cache) - A caching library.
703
+* [Metaphore](https://github.com/sobstel/metaphore) - Cache slam defense using a semaphore to prevent dogpile effect.
673
 * [Stash](https://github.com/tedious/Stash) - Another library for caching.
704
 * [Stash](https://github.com/tedious/Stash) - Another library for caching.
674
 * [Zend Cache](https://github.com/zendframework/zend-cache) - Another caching library (ZF2).
705
 * [Zend Cache](https://github.com/zendframework/zend-cache) - Another caching library (ZF2).
675
 
706
 
682
 * [Fractal](https://github.com/thephpleague/fractal) - A library for converting complex data structures to JSON output.
713
 * [Fractal](https://github.com/thephpleague/fractal) - A library for converting complex data structures to JSON output.
683
 * [Ginq](https://github.com/akanehara/ginq) - Another PHP library based on .NET's LINQ.
714
 * [Ginq](https://github.com/akanehara/ginq) - Another PHP library based on .NET's LINQ.
684
 * [JsonMapper](https://github.com/cweiske/jsonmapper) - A library that maps nested JSON structures onto PHP classes.
715
 * [JsonMapper](https://github.com/cweiske/jsonmapper) - A library that maps nested JSON structures onto PHP classes.
716
+* [Knapsack](https://github.com/DusanKasan/Knapsack) - Collection library inspired by Clojure's sequences.
685
 * [msgpack.php](https://github.com/rybakit/msgpack.php) - A pure PHP implementation of the MessagePack serialization format.
717
 * [msgpack.php](https://github.com/rybakit/msgpack.php) - A pure PHP implementation of the MessagePack serialization format.
686
 * [PHP Collections](https://github.com/schmittjoh/php-collection) - A simple collections library.
718
 * [PHP Collections](https://github.com/schmittjoh/php-collection) - A simple collections library.
687
 * [PINQ](https://github.com/TimeToogo/Pinq) - A PHP library based on .NET's LINQ (Language Integrated Query).
719
 * [PINQ](https://github.com/TimeToogo/Pinq) - A PHP library based on .NET's LINQ (Language Integrated Query).
720
+* [Porter](https://github.com/ScriptFUSION/Porter) - Data import abstraction framework.
688
 * [Serializer](https://github.com/schmittjoh/serializer) - A library for serialising and de-serialising data.
721
 * [Serializer](https://github.com/schmittjoh/serializer) - A library for serialising and de-serialising data.
689
 * [Totem](https://github.com/Wisembly/Totem) - A library to manage and create data changesets.
722
 * [Totem](https://github.com/Wisembly/Totem) - A library to manage and create data changesets.
690
 * [YaLinqo](https://github.com/Athari/YaLinqo) - Yet Another LINQ to Objects for PHP.
723
 * [YaLinqo](https://github.com/Athari/YaLinqo) - Yet Another LINQ to Objects for PHP.
712
 ## Internationalisation and Localisation
745
 ## Internationalisation and Localisation
713
 *Libraries for Internationalization (I18n) and Localization (L10n).*
746
 *Libraries for Internationalization (I18n) and Localization (L10n).*
714
 
747
 
715
-* [Aura Intl](https://github.com/auraphp/Aura.Intl)
748
+* [Aura.Intl](https://github.com/auraphp/Aura.Intl) - Provides internationalization (I18N) tools, specifically package-oriented per-locale message translation.
716
 * [Cake I18n](https://github.com/cakephp/i18n) - Message translation and localization for dates and numbers (CP)
749
 * [Cake I18n](https://github.com/cakephp/i18n) - Message translation and localization for dates and numbers (CP)
717
 
750
 
718
 ## Third Party APIs
751
 ## Third Party APIs
757
 * [Lambda PHP](https://github.com/igorw/lambda-php) - A Lambda calculus interpreter in PHP.
790
 * [Lambda PHP](https://github.com/igorw/lambda-php) - A Lambda calculus interpreter in PHP.
758
 * [LiteCQRS](https://github.com/beberlei/litecqrs-php) - A CQRS (Command Query Responsibility Separation) library.
791
 * [LiteCQRS](https://github.com/beberlei/litecqrs-php) - A CQRS (Command Query Responsibility Separation) library.
759
 * [Metrics](https://github.com/beberlei/metrics) - A simple metrics API library.
792
 * [Metrics](https://github.com/beberlei/metrics) - A simple metrics API library.
793
+* [noCAPTCHA](https://github.com/ARCANEDEV/noCAPTCHA) - Helper for Google's noCAPTCHA (reCAPTCHA).
760
 * [Nmap](https://github.com/willdurand/nmap) - A PHP wrapper around [Nmap](https://nmap.org/).
794
 * [Nmap](https://github.com/willdurand/nmap) - A PHP wrapper around [Nmap](https://nmap.org/).
761
 * [Opengraph](https://github.com/euskadi31/Opengraph) - An opengraph library.
795
 * [Opengraph](https://github.com/euskadi31/Opengraph) - An opengraph library.
762
 * [Pagerfanta](https://github.com/whiteoctober/Pagerfanta) - A pagination library.
796
 * [Pagerfanta](https://github.com/whiteoctober/Pagerfanta) - A pagination library.
763
 * [PHP Expression](https://github.com/Kitano/php-expression) - A PHP expression language.
797
 * [PHP Expression](https://github.com/Kitano/php-expression) - A PHP expression language.
764
 * [PHP PassBook](https://github.com/eymengunay/php-passbook) - A PHP library for iOS PassBook.
798
 * [PHP PassBook](https://github.com/eymengunay/php-passbook) - A PHP library for iOS PassBook.
765
 * [PHP-GPIO](https://github.com/ronanguilloux/php-gpio) - A library for playing with the Raspberry PI's GPIO pins.
799
 * [PHP-GPIO](https://github.com/ronanguilloux/php-gpio) - A library for playing with the Raspberry PI's GPIO pins.
800
+* [PHP-ML](https://github.com/php-ai/php-ml) - A library for Machine Learning in PHP.
766
 * [PHPCR](https://github.com/phpcr/phpcr) - A PHP port of the Java Content Repository (JCR).
801
 * [PHPCR](https://github.com/phpcr/phpcr) - A PHP port of the Java Content Repository (JCR).
767
 * [PHPStack](http://dunkels.com/adam/phpstack/) - A TCP/IP stack proof of concept written in PHP.
802
 * [PHPStack](http://dunkels.com/adam/phpstack/) - A TCP/IP stack proof of concept written in PHP.
768
 * [print_o](https://github.com/koriym/print_o) - An object graph visualizer.
803
 * [print_o](https://github.com/koriym/print_o) - An object graph visualizer.
774
 * [Spork](https://github.com/kriswallsmith/spork) - A process forking library.
809
 * [Spork](https://github.com/kriswallsmith/spork) - A process forking library.
775
 * [Sslurp](https://github.com/EvanDotPro/Sslurp) - A library that makes dealing with SSL suck less.
810
 * [Sslurp](https://github.com/EvanDotPro/Sslurp) - A library that makes dealing with SSL suck less.
776
 * [SuperClosure](https://github.com/jeremeamia/super_closure) - A library that allows Closures to be serialized.
811
 * [SuperClosure](https://github.com/jeremeamia/super_closure) - A library that allows Closures to be serialized.
777
-* [Symfony VarDumper](http://symfony.com/doc/current/components/var_dumper/introduction.html) - A variable dumper component (SF2).
812
+* [Symfony VarDumper](http://symfony.com/doc/current/components/var_dumper.html) - A variable dumper component (SF).
778
 * [Underscore](http://anahkiasen.github.io/underscore-php/) - A PHP port of the Underscore JS library.
813
 * [Underscore](http://anahkiasen.github.io/underscore-php/) - A PHP port of the Underscore JS library.
779
 * [Whoops](https://github.com/filp/whoops) - A pretty error handling library.
814
 * [Whoops](https://github.com/filp/whoops) - A pretty error handling library.
780
 
815
 
785
 *Tools to help install and manage PHP on your computer.*
820
 *Tools to help install and manage PHP on your computer.*
786
 
821
 
787
 * [HomeBrew PHP](https://github.com/Homebrew/homebrew-php) - A PHP tap for HomeBrew.
822
 * [HomeBrew PHP](https://github.com/Homebrew/homebrew-php) - A PHP tap for HomeBrew.
788
-* [HomeBrew](http://brew.sh/) - A package manager for OSX.
823
+* [HomeBrew](https://brew.sh/) - A package manager for OSX.
789
 * [PHP Brew](https://github.com/phpbrew/phpbrew) - A PHP version manager and installer.
824
 * [PHP Brew](https://github.com/phpbrew/phpbrew) - A PHP version manager and installer.
790
 * [PHP Build](https://github.com/php-build/php-build) - Another PHP version installer.
825
 * [PHP Build](https://github.com/php-build/php-build) - Another PHP version installer.
791
 * [PHP Env](https://github.com/CHH/phpenv) - Another PHP version manager.
826
 * [PHP Env](https://github.com/CHH/phpenv) - Another PHP version manager.
792
-* [PHP OSX](http://php-osx.liip.ch/) - A PHP installer for OSX.
827
+* [PHP OSX](https://php-osx.liip.ch/) - A PHP installer for OSX.
793
 * [PHP Switch](https://github.com/jubianchi/phpswitch) - Another version manager.
828
 * [PHP Switch](https://github.com/jubianchi/phpswitch) - Another version manager.
794
 * [VirtPHP](http://virtphp.org/) - A tool for creating and managing isolated PHP environments.
829
 * [VirtPHP](http://virtphp.org/) - A tool for creating and managing isolated PHP environments.
795
 
830
 
802
 * [PuPHPet](https://puphpet.com/) - A web tool for building PHP development virtual machines.
837
 * [PuPHPet](https://puphpet.com/) - A web tool for building PHP development virtual machines.
803
 * [Puppet](https://puppet.com/) - A server automation framework and application.
838
 * [Puppet](https://puppet.com/) - A server automation framework and application.
804
 * [Vagrant](https://www.vagrantup.com/) - A portable development environment utility.
839
 * [Vagrant](https://www.vagrantup.com/) - A portable development environment utility.
840
+* [Docker](https://www.docker.com/) - A containerization platform.
805
 
841
 
806
 ## Virtual Machines
842
 ## Virtual Machines
807
 *Alternative PHP virtual machines.*
843
 *Alternative PHP virtual machines.*
821
 *Web-based applications and tools.*
857
 *Web-based applications and tools.*
822
 
858
 
823
 * [3V4L](https://3v4l.org/) - An online PHP & HHVM shell.
859
 * [3V4L](https://3v4l.org/) - An online PHP & HHVM shell.
824
-* [DBV](http://dbv.vizuina.com/) - A database version control application.
860
+* [DBV](https://dbv.vizuina.com/) - A database version control application.
825
 * [PHP Queue](https://github.com/CoderKungfu/php-queue) - An application for managing queueing backends.
861
 * [PHP Queue](https://github.com/CoderKungfu/php-queue) - An application for managing queueing backends.
826
 * [MailCatcher](https://github.com/sj26/mailcatcher) - A web tool for capturing and viewing emails.
862
 * [MailCatcher](https://github.com/sj26/mailcatcher) - A web tool for capturing and viewing emails.
827
 * [Cachet](https://github.com/cachethq/cachet) - The open source status page system.
863
 * [Cachet](https://github.com/cachethq/cachet) - The open source status page system.
828
-* [phpRedisAdmin](https://github.com/ErikDubbelboer/phpRedisAdmin) - A simple web interface to manage [Redis](http://redis.io/) databases.
864
+* [phpBeanstalkdAdmin](https://github.com/mnapoli/phpBeanstalkdAdmin) - Monitoring and administration interface for Beanstalkd.
865
+* [phpRedisAdmin](https://github.com/ErikDubbelboer/phpRedisAdmin) - A simple web interface to manage [Redis](https://redis.io/) databases.
829
 * [phpPgAdmin](https://github.com/phppgadmin/phppgadmin) - A web-based administration tool for PostgreSQL.
866
 * [phpPgAdmin](https://github.com/phppgadmin/phppgadmin) - A web-based administration tool for PostgreSQL.
830
 * [phpMyAdmin](https://github.com/phpmyadmin/phpmyadmin) - A web interface for MySQL/MariaDB.
867
 * [phpMyAdmin](https://github.com/phpmyadmin/phpmyadmin) - A web interface for MySQL/MariaDB.
831
 * [Adminer](https://www.adminer.org/) - Database management in a single PHP file.
868
 * [Adminer](https://www.adminer.org/) - Database management in a single PHP file.
846
 * [Nomad PHP](https://nomadphp.com/) - A online PHP learning resource.
883
 * [Nomad PHP](https://nomadphp.com/) - A online PHP learning resource.
847
 * [PHP Best Practices](https://phpbestpractices.org/) - A PHP best practice guide.
884
 * [PHP Best Practices](https://phpbestpractices.org/) - A PHP best practice guide.
848
 * [PHP FIG](http://www.php-fig.org/) - The PHP Framework Interoperability Group.
885
 * [PHP FIG](http://www.php-fig.org/) - The PHP Framework Interoperability Group.
849
-* [PHP Mentoring](http://phpmentoring.org/) - Peer to peer PHP mentorship organization.
886
+* [PHP Mentoring](https://php-mentoring.org/) - Peer to peer PHP mentorship organization.
887
+* [PHP Package Development Standards](http://php-pds.com) - Package development standards for PHP.
850
 * [PHP School](https://www.phpschool.io/) - Open Source Learning for PHP.
888
 * [PHP School](https://www.phpschool.io/) - Open Source Learning for PHP.
851
-* [PHP Security](http://phpsecurity.readthedocs.org/en/latest/index.html) - A guide to PHP security.
889
+* [PHP Security](http://phpsecurity.readthedocs.io/en/latest/index.html) - A guide to PHP security.
852
 * [PHP The Right Way](http://www.phptherightway.com/) - A PHP best practice quick reference guide.
890
 * [PHP The Right Way](http://www.phptherightway.com/) - A PHP best practice quick reference guide.
853
 * [PHP UG](http://php.ug) - A website to help people locate their nearest PHP user group (UG).
891
 * [PHP UG](http://php.ug) - A website to help people locate their nearest PHP user group (UG).
854
 * [PHP Versions](http://phpversions.info/) - Lists which versions of PHP are available on several popular web hosts.
892
 * [PHP Versions](http://phpversions.info/) - Lists which versions of PHP are available on several popular web hosts.
855
 * [PHP Weekly](http://www.phpweekly.com/archive.html) - A weekly PHP newsletter.
893
 * [PHP Weekly](http://www.phpweekly.com/archive.html) - A weekly PHP newsletter.
856
-* [PHPTrends](http://phptrends.com/) - An overview of fastest growing PHP libraries.
894
+* [PHPTrends](https://phptrends.com/) - An overview of fastest growing PHP libraries.
857
 * [Securing PHP](http://securingphp.com/) - A newsletter about PHP security and library recommendations.
895
 * [Securing PHP](http://securingphp.com/) - A newsletter about PHP security and library recommendations.
858
-* [Seven PHP](http://7php.com/) - A website that interviews members of the PHP community.
896
+* [Seven PHP](https://7php.com/) - A website that interviews members of the PHP community.
859
 
897
 
860
 ## Other Websites
898
 ## Other Websites
861
 *Useful websites related to web development.*
899
 *Useful websites related to web development.*
862
 
900
 
863
-* [Atlassian Git Tutorials](https://www.atlassian.com/git/) - A series of Git tutorials.
901
+* [Atlassian Git Tutorials](https://www.atlassian.com/git) - A series of Git tutorials.
864
 * [Hg Init](http://hginit.com/) - A series of Mercurial tutorials.
902
 * [Hg Init](http://hginit.com/) - A series of Mercurial tutorials.
865
 * [Semantic Versioning](http://semver.org/) - A website explaining semantic versioning.
903
 * [Semantic Versioning](http://semver.org/) - A website explaining semantic versioning.
866
 * [Servers for Hackers](https://serversforhackers.com/) - A newsletter about server management.
904
 * [Servers for Hackers](https://serversforhackers.com/) - A newsletter about server management.
870
 ## PHP Books
908
 ## PHP Books
871
 *Fantastic PHP-related books.*
909
 *Fantastic PHP-related books.*
872
 
910
 
873
-* [Functional Programming in PHP](https://www.phparch.com/books/functional-programming-in-php/) - This book will show you how to leverage these new PHP5.3+ features by understanding functional programming principles
911
+* [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
874
 * [Grumpy PHPUnit](https://leanpub.com/grumpy-phpunit) - A book about unit testing with PHPUnit by Chris Hartjes.
912
 * [Grumpy PHPUnit](https://leanpub.com/grumpy-phpunit) - A book about unit testing with PHPUnit by Chris Hartjes.
875
 * [Mastering Object-Orientated PHP](http://www.brandonsavage.net) - A book about object-orientated PHP by Brandon Savage.
913
 * [Mastering Object-Orientated PHP](http://www.brandonsavage.net) - A book about object-orientated PHP by Brandon Savage.
876
 * [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.
914
 * [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.
877
-* [Modernising Legacy Applications in PHP](https://leanpub.com/mlaphp) - A book about modernising legacy PHP applications by Paul M. Jones.
915
+* [Modernizing Legacy Applications in PHP](https://leanpub.com/mlaphp) - A book about modernizing legacy PHP applications by Paul M. Jones.
878
 * [PHP 7 Upgrade Guide](https://leanpub.com/php7) - An ebook covering all of the features and changes in PHP 7 by Colin O'Dell.
916
 * [PHP 7 Upgrade Guide](https://leanpub.com/php7) - An ebook covering all of the features and changes in PHP 7 by Colin O'Dell.
879
-* [PHP Pandas](http://daylerees.com/php-pandas/) - A book about learning to write PHP by Dayle Rees.
917
+* [PHP Pandas](https://daylerees.com/php-pandas/) - A book about learning to write PHP by Dayle Rees.
880
 * [Scaling PHP Applications](http://www.scalingphpbook.com) - An ebook about scaling PHP applications by Steve Corona.
918
 * [Scaling PHP Applications](http://www.scalingphpbook.com) - An ebook about scaling PHP applications by Steve Corona.
881
 * [Securing PHP: Core Concepts](https://leanpub.com/securingphp-coreconcepts) - A book about common security terms and practices for PHP by Chris Cornutt.
919
 * [Securing PHP: Core Concepts](https://leanpub.com/securingphp-coreconcepts) - A book about common security terms and practices for PHP by Chris Cornutt.
882
 * [Signaling PHP](https://leanpub.com/signalingphp) - A book about catching PCNTL signals in CLI scripts by Cal Evans.
920
 * [Signaling PHP](https://leanpub.com/signalingphp) - A book about catching PCNTL signals in CLI scripts by Cal Evans.
883
 * [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.
921
 * [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.
884
 * [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.
922
 * [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.
923
+* [Domain-Driven Design in PHP](https://leanpub.com/ddd-in-php) - Real examples written in PHP showcasing DDD Architectural Styles.
885
 
924
 
886
 ## Other Books
925
 ## Other Books
887
 *Books related to general computing and web development.*
926
 *Books related to general computing and web development.*
891
 * [Head First Design Patterns](http://www.headfirstlabs.com/books/hfdp/) - A book that expains software design patterns.
930
 * [Head First Design Patterns](http://www.headfirstlabs.com/books/hfdp/) - A book that expains software design patterns.
892
 * [Pro Git](https://git-scm.com/book/en/v2) - A book about Git by Scott Chacon and Ben Straub.
931
 * [Pro Git](https://git-scm.com/book/en/v2) - A book about Git by Scott Chacon and Ben Straub.
893
 * [The Linux Command Line](http://linuxcommand.org/tlcl.php) - A book about the Linux command line by William Shotts.
932
 * [The Linux Command Line](http://linuxcommand.org/tlcl.php) - A book about the Linux command line by William Shotts.
894
-* [The Tangled Web — Securing Web Applications](http://www.amazon.com/The-Tangled-Web-Securing-Applications/dp/1593273886) - A book about securing web applications by Michal Zalewski.
933
+* [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.
895
 * [Understanding Computation](http://computationbook.com) - A book about computation theory by Tom Stuart.
934
 * [Understanding Computation](http://computationbook.com) - A book about computation theory by Tom Stuart.
896
 * [Vagrant Cookbook](https://leanpub.com/vagrantcookbook) - A book about creating Vagrant environments by Erika Heidi.
935
 * [Vagrant Cookbook](https://leanpub.com/vagrantcookbook) - A book about creating Vagrant environments by Erika Heidi.
897
 
936
 
898
 ## PHP Videos
937
 ## PHP Videos
899
 *Fantastic PHP-related videos.*
938
 *Fantastic PHP-related videos.*
900
 
939
 
901
-* [PHP Town Hall](https://phptownhall.com/) - A casual PHP podcast by Ben Edmunds and Phil Sturgeon.
940
+* [Nomad PHP Lightning Talks](https://www.youtube.com/c/nomadphp) - 10 to 15 minute Lightning Talks by PHP community members.
902
 * [PHP UK Conference](https://www.youtube.com/user/phpukconference/videos) - A collection of videos from the PHP UK Conference.
941
 * [PHP UK Conference](https://www.youtube.com/user/phpukconference/videos) - A collection of videos from the PHP UK Conference.
903
 * [Programming with Anthony](https://www.youtube.com/playlist?list=PLM-218uGSX3DQ3KsB5NJnuOqPqc5CW2kW) - A video series by Anthony Ferrara.
942
 * [Programming with Anthony](https://www.youtube.com/playlist?list=PLM-218uGSX3DQ3KsB5NJnuOqPqc5CW2kW) - A video series by Anthony Ferrara.
904
-* [Taking PHP Seriously](http://www.infoq.com/presentations/php-history) - A talk outlining PHP's strengths by Keith Adams of Facebook.
943
+* [Taking PHP Seriously](https://www.infoq.com/presentations/php-history) - A talk outlining PHP's strengths by Keith Adams of Facebook.
944
+
945
+## PHP Podcasts
946
+*Podcasts with a main focus on PHP topics*
947
+
948
+* [PHP Town Hall](https://phptownhall.com/) - A casual PHP podcast by Ben Edmunds and Phil Sturgeon.
949
+* [Voices of the ElePHPant](https://voicesoftheelephpant.com/) Interviews with the people that make the PHP community special.
950
+* [PHP Roundtable](https://www.phproundtable.com/) - The PHP Roundtable is a casual gathering of developers discussing topics that PHP nerds care about.
905
 
951
 
906
 ## PHP Reading
952
 ## PHP Reading
907
 *PHP-releated reading materials.*
953
 *PHP-releated reading materials.*
908
 
954
 
909
-* [Composer Primer](http://daylerees.com/composer-primer/) - A Composer primer.
955
+* [Composer Primer](https://daylerees.com/composer-primer/) - A Composer primer.
910
 * [Composer Stability Flags](https://igor.io/2013/02/07/composer-stability-flags.html) - An article about Composer stability flags.
956
 * [Composer Stability Flags](https://igor.io/2013/02/07/composer-stability-flags.html) - An article about Composer stability flags.
911
 * [Composer Versioning](https://igor.io/2013/01/07/composer-versioning.html) - An article about Composer versioning.
957
 * [Composer Versioning](https://igor.io/2013/01/07/composer-versioning.html) - An article about Composer versioning.
912
 * [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.
958
 * [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.
917
 * [PHP Sucks! But I Like It!](http://blog.ircmaxell.com/2012/04/php-sucks-but-i-like-it.html) - An article about the pros and cons of PHP.
963
 * [PHP Sucks! But I Like It!](http://blog.ircmaxell.com/2012/04/php-sucks-but-i-like-it.html) - An article about the pros and cons of PHP.
918
 * [Preventing CSRF Attacks](http://blog.ircmaxell.com/2013/02/preventing-csrf-attacks.html) - An article on preventing CSRF attacks.
964
 * [Preventing CSRF Attacks](http://blog.ircmaxell.com/2013/02/preventing-csrf-attacks.html) - An article on preventing CSRF attacks.
919
 * [Seven Ways to Screw Up BCrypt](http://blog.ircmaxell.com/2012/12/seven-ways-to-screw-up-bcrypt.html) - An article about correct BCrypt implementation.
965
 * [Seven Ways to Screw Up BCrypt](http://blog.ircmaxell.com/2012/12/seven-ways-to-screw-up-bcrypt.html) - An article about correct BCrypt implementation.
920
-* [Use Env](http://seancoates.com/blogs/use-env/) - An article about using the unix environment helper.
966
+* [Use Env](https://seancoates.com/blogs/use-env/) - An article about using the unix environment helper.
921
 
967
 
922
 ## PHP Internals Reading
968
 ## PHP Internals Reading
923
 *Reading materials related to the PHP internals or performance.*
969
 *Reading materials related to the PHP internals or performance.*
924
 
970
 
925
 * [Disproving the Single Quotes Myth](http://nikic.github.io/2012/01/09/Disproving-the-Single-Quotes-Performance-Myth.html) - An article about performance of single and double quoted strings.
971
 * [Disproving the Single Quotes Myth](http://nikic.github.io/2012/01/09/Disproving-the-Single-Quotes-Performance-Myth.html) - An article about performance of single and double quoted strings.
926
 * [How Big Are PHP Arrays (And Values) Really?](http://nikic.github.io/2011/12/12/How-big-are-PHP-arrays-really-Hint-BIG.html) - An article about array internals.
972
 * [How Big Are PHP Arrays (And Values) Really?](http://nikic.github.io/2011/12/12/How-big-are-PHP-arrays-really-Hint-BIG.html) - An article about array internals.
927
-* [How Foreach Works](http://stackoverflow.com/questions/10057671/how-does-foreach-actually-work/14854568#14854568) - A detailed StackOverflow answer about foreach.
973
+* [How Foreach Works](https://stackoverflow.com/questions/10057671/how-does-php-foreach-actually-work/14854568#14854568) - A detailed StackOverflow answer about foreach.
928
 * [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.
974
 * [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.
929
 * [PHP Evaluation Order](https://gist.github.com/nikic/6699370) - An article about evaluation order in PHP.
975
 * [PHP Evaluation Order](https://gist.github.com/nikic/6699370) - An article about evaluation order in PHP.
930
 * [PHP Internals Book](http://www.phpinternalsbook.com) - An online book about PHP internals, written by three core developers.
976
 * [PHP Internals Book](http://www.phpinternalsbook.com) - An online book about PHP internals, written by three core developers.

Loading…
Cancel
Save