Skip to content

Commit

Permalink
1.23
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgecc-business-account committed Aug 12, 2024
1 parent 5b26510 commit 1572c64
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 24 deletions.
5 changes: 4 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,7 @@
/.gitattributes export-ignore
/.gitignore export-ignore
/.travis.yml export-ignore
/phpunit.xml export-ignore
/phpunit.xml export-ignore
/docs export-ignore
/examples export-ignore
/test export-ignore
7 changes: 4 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/.idea
composer.lock
vendor/
/.idea
composer.lock
vendor/
.phpunit.result.cache
13 changes: 0 additions & 13 deletions .travis.yml

This file was deleted.

7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ It's a set of useful functions for PHP. The name is a pun (Mapache in spanish is
[![Packagist](https://img.shields.io/packagist/v/eftec/mapache-commons.svg)](https://packagist.org/packages/eftec/mapache-commons)
[![Maintenance](https://img.shields.io/maintenance/yes/2024.svg)]()
[![composer](https://img.shields.io/badge/composer-%3E1.6-blue.svg)]()
[![php](https://img.shields.io/badge/php->5.6-green.svg)]()
[![php](https://img.shields.io/badge/php-7.x-green.svg)]()
[![php](https://img.shields.io/badge/php-7.4-green.svg)]()
[![php](https://img.shields.io/badge/php-8.*-green.svg)]()
[![CocoaPods](https://img.shields.io/badge/docs-70%25-yellow.svg)]()

<!-- TOC -->
Expand Down Expand Up @@ -436,13 +436,14 @@ TextLib::addParenthesis('(hello)');
> Todo: missing documentation, check the phpdoc for more information.
## Version list
* 1.23 Modified .gitattributes and .gitignore to streamline the final version.
* 1.22 The next classes have been renamed:
* Text (deprecated) => TextLib
* Collection (deprecated) => CollectionLib
* Debug (deprecated) => DebugLib
* It is because there are a dozen of libraries who use the same name for the classes.
* **You can still use the same library without changes** but for new code I suggest to use the new names.
* [next] FileLib::getDirFirstFile()
* [new] FileLib::getDirFirstFile()
* 1.21 added FileLib class
* getDirFiles()
* getDirFolders()
Expand Down
2 changes: 1 addition & 1 deletion lib/CollectionLib.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* Class CollectionLib
*
* @package mapache_commons
* @version 1.22 2024-08-10
* @version 1.23 2024-08-12
* @copyright Jorge Castro Castillo
* @license Apache-2.0
* @see https://github.com/EFTEC/mapache-commons
Expand Down
2 changes: 1 addition & 1 deletion lib/DebugLib.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* Class Debug
*
* @package mapache_commons
* @version 1.21 2024-08-10
* @version 1.23 2024-08-12
* @copyright Jorge Castro Castillo
* @license Apache-2.0
* @see https://github.com/EFTEC/mapache-commons
Expand Down
2 changes: 1 addition & 1 deletion lib/FileLib.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* This class has a collection of functions to interact with files and directories.
*
* @package mapache_commons
* @version 1.22 2024-08-10
* @version 1.23 2024-08-12
* @copyright Jorge Castro Castillo
* @license Apache-2.0
* @see https://github.com/EFTEC/mapache-commons
Expand Down
2 changes: 1 addition & 1 deletion lib/TextLib.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* Class TextLib
*
* @package mapache_commons
* @version 1.22 2024-08-10
* @version 1.23 2024-08-12
* @copyright Jorge Castro Castillo
* @license Apache-2.0
* @see https://github.com/EFTEC/mapache-commons
Expand Down

0 comments on commit 1572c64

Please sign in to comment.