|
|
@@ -45,7 +45,8 @@ Please see [CONTRIBUTING](https://github.com/ziadoz/awesome-php/blob/master/CONT
|
|
45
|
45
|
- [Command Line](#command-line)
|
|
46
|
46
|
- [Authentication](#authentication)
|
|
47
|
47
|
- [Markup](#markup)
|
|
48
|
|
- - [Text and Numbers](#text-and-numbers)
|
|
|
48
|
+ - [Strings](#strings)
|
|
|
49
|
+ - [Numbers](#numbers)
|
|
49
|
50
|
- [Filtering and Validation](#filtering-and-validation)
|
|
50
|
51
|
- [REST and API](#rest-and-api)
|
|
51
|
52
|
- [Caching](#caching)
|
|
|
@@ -473,25 +474,29 @@ Libraries to help manage database schemas and migrations.
|
|
473
|
474
|
* [Cebe Markdown](https://github.com/cebe/markdown) - An fast and extensible Markdown parser.
|
|
474
|
475
|
* [HTML5 PHP](https://github.com/Masterminds/html5-php) - An HTML5 parser and serializer library.
|
|
475
|
476
|
|
|
476
|
|
-## Text and Numbers
|
|
477
|
|
-*Libraries for parsing and manipulating text and numbers.*
|
|
|
477
|
+## Strings
|
|
|
478
|
+*Libraries for parsing and manipulating strings.*
|
|
478
|
479
|
|
|
479
|
480
|
* [ANSI to HTML5](https://github.com/sensiolabs/ansi-to-html) - An ANSI to HTML5 converter library.
|
|
480
|
481
|
* [Patchwork UTF-8](https://github.com/nicolas-grekas/Patchwork-UTF8) - A portable library for working with UTF-8 strings.
|
|
481
|
482
|
* [Hoa String](https://github.com/hoaproject/String) - Another UTF-8 string library.
|
|
482
|
483
|
* [Stringy](https://github.com/danielstjules/Stringy) - A string manipulation library with multibyte support.
|
|
483
|
|
-* [Numbers PHP](https://github.com/powder96/numbers.php) - A library for working with numbers.
|
|
484
|
|
-* [Math](https://github.com/moontoast/math) - A library for working with large numbers.
|
|
485
|
484
|
* [Color Jizz](https://github.com/mikeemoo/ColorJizz-PHP) - A library for manipulating and converting colours.
|
|
486
|
485
|
* [UUID](https://github.com/ramsey/uuid) - A library for generating UUIDs.
|
|
487
|
486
|
* [Slugify](https://github.com/cocur/slugify) - A library to convert strings to slugs.
|
|
488
|
487
|
* [Urlify](https://github.com/jbroadway/urlify) - A PHP port of Django's URLify.js.
|
|
489
|
488
|
* [Text](https://github.com/kzykhys/Text) - A text manipulation library.
|
|
490
|
|
-* [PHP Units of Measure](https://github.com/triplepoint/php-units-of-measure) - A library for converting between units of measure.
|
|
491
|
|
-* [PHP Conversion](https://github.com/Crisu83/php-conversion) - Another library for converting between units of measure.
|
|
492
|
489
|
* [SQL Formatter](https://github.com/jdorn/sql-formatter/) - A library for formatting SQL statements.
|
|
493
|
|
-* [ByteUnits](https://github.com/gabrielelana/byte-units) - A library to parse, format and convert byte units in binary and metric systems.
|
|
494
|
490
|
* [UA Parser](https://github.com/tobie/ua-parser/tree/master/php) - A library for parsing user agent strings.
|
|
|
491
|
+
|
|
|
492
|
+## Numbers
|
|
|
493
|
+*Libraries for working with numbers.*
|
|
|
494
|
+
|
|
|
495
|
+* [Numbers PHP](https://github.com/powder96/numbers.php) - A library for working with numbers.
|
|
|
496
|
+* [Math](https://github.com/moontoast/math) - A library for working with large numbers.
|
|
|
497
|
+* [ByteUnits](https://github.com/gabrielelana/byte-units) - A library to parse, format and convert byte units in binary and metric systems.
|
|
|
498
|
+* [PHP Units of Measure](https://github.com/triplepoint/php-units-of-measure) - A library for converting between units of measure.
|
|
|
499
|
+* [PHP Conversion](https://github.com/Crisu83/php-conversion) - Another library for converting between units of measure.
|
|
495
|
500
|
* [LibPhoneNumber for PHP](https://github.com/giggsey/libphonenumber-for-php) - A PHP implementation of Google's phone number handling library.
|
|
496
|
501
|
|
|
497
|
502
|
## Filtering and Validation
|