|
|
@@ -61,7 +61,7 @@ Please see [CONTRIBUTING](https://github.com/ziadoz/awesome-php/blob/master/CONT
|
|
61
|
61
|
- [JSON](#json)
|
|
62
|
62
|
- [Strings](#strings)
|
|
63
|
63
|
- [Numbers](#numbers)
|
|
64
|
|
- - [Filtering and Validation](#filtering-and-validation)
|
|
|
64
|
+ - [Filtering, Sanitizing and Validation](#filtering-sanitizing-and-validation)
|
|
65
|
65
|
- [API](#api)
|
|
66
|
66
|
- [Caching and Locking](#caching-and-locking)
|
|
67
|
67
|
- [Data Structure and Storage](#data-structure-and-storage)
|
|
|
@@ -360,7 +360,6 @@ Please see [CONTRIBUTING](https://github.com/ziadoz/awesome-php/blob/master/CONT
|
|
360
|
360
|
|
|
361
|
361
|
* [AntiXSS](https://github.com/voku/anti-xss) - A library that tries to preventing Cross-Site Scripting (XSS) attacks by blacklisting.
|
|
362
|
362
|
* [Halite](https://paragonie.com/project/halite) - A simple library for encryption using [libsodium](https://github.com/jedisct1/libsodium).
|
|
363
|
|
-* [HTML Purifier](https://github.com/ezyang/htmlpurifier) - A standards compliant HTML filter.
|
|
364
|
363
|
* [Optimus](https://github.com/jenssegers/optimus) - Id obfuscation based on Knuth's multiplicative hashing method.
|
|
365
|
364
|
* [OWASP](https://owasp.org/) - Explore the world of cyber security.
|
|
366
|
365
|
* [PHPGGC](https://github.com/ambionics/phpggc) - A library of PHP unserializable payloads along with a tool to generate them.
|
|
|
@@ -710,17 +709,19 @@ Libraries to help manage database schemas and migrations.
|
|
710
|
709
|
* [PHP Units of Measure](https://github.com/triplepoint/php-units-of-measure) - A library for converting between units of measure.
|
|
711
|
710
|
* [MathPHP](https://github.com/markrogoyski/math-php) - A math library for PHP.
|
|
712
|
711
|
|
|
713
|
|
-### Filtering and Validation
|
|
714
|
|
-*Libraries for filtering and validating data.*
|
|
|
712
|
+### Filtering, Sanitizing and Validation
|
|
|
713
|
+*Libraries for filtering, sanitizing and validating data.*
|
|
715
|
714
|
|
|
716
|
715
|
* [Assert](https://github.com/beberlei/assert) - A validation library with a rich set of assertions. Supports assertion chaining and lazy assertions.
|
|
717
|
716
|
* [Aura.Filter](https://github.com/auraphp/Aura.Filter) - Provides tools to validate and sanitize objects and arrays.
|
|
718
|
717
|
* [CakePHP Validation](https://github.com/cakephp/validation) - Another validation library.
|
|
719
|
718
|
* [Filterus](https://github.com/ircmaxell/filterus) - A simple PHP filtering library.
|
|
|
719
|
+* [HTML Purifier](https://github.com/ezyang/htmlpurifier) - A standards compliant HTML filter.
|
|
720
|
720
|
* [ISO-codes](https://github.com/ronanguilloux/IsoCodes) - A library for validating inputs according to standards from ISO, International Finance, Public Administrations, GS1, Book Industry, Phone numbers & Zipcodes for many countries.
|
|
721
|
721
|
* [JSON Schema](https://github.com/jsonrainbow/json-schema) - A [JSON Schema](https://json-schema.org/) validation library.
|
|
722
|
722
|
* [MetaYaml](https://github.com/romaricdrigon/MetaYaml) - A schema validation library that supports YAML, JSON and XML.
|
|
723
|
723
|
* [Respect Validation](https://github.com/Respect/Validation) - A simple validation library.
|
|
|
724
|
+* [Symfony HTML Sanitizer](https://github.com/symfony/html-sanitizer) - An HTML sanitizer library.
|
|
724
|
725
|
* [Upload](https://github.com/brandonsavage/Upload) - A library for handling file uploads and validation.
|
|
725
|
726
|
* [Valitron](https://github.com/vlucas/valitron) - Another validation library.
|
|
726
|
727
|
* [Valinor](https://github.com/CuyZ/Valinor) - A library for mapping to strongly typed value objects.
|