Skip to content

Commit 1572c64

Browse files
1.23
1 parent 5b26510 commit 1572c64

File tree

8 files changed

+16
-24
lines changed

8 files changed

+16
-24
lines changed

.gitattributes

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,7 @@
22
/.gitattributes export-ignore
33
/.gitignore export-ignore
44
/.travis.yml export-ignore
5-
/phpunit.xml export-ignore
5+
/phpunit.xml export-ignore
6+
/docs export-ignore
7+
/examples export-ignore
8+
/test export-ignore

.gitignore

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
/.idea
2-
composer.lock
3-
vendor/
1+
/.idea
2+
composer.lock
3+
vendor/
4+
.phpunit.result.cache

.travis.yml

Lines changed: 0 additions & 13 deletions
This file was deleted.

README.md

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

1212
<!-- TOC -->
@@ -436,13 +436,14 @@ TextLib::addParenthesis('(hello)');
436436
> Todo: missing documentation, check the phpdoc for more information.
437437
438438
## Version list
439+
* 1.23 Modified .gitattributes and .gitignore to streamline the final version.
439440
* 1.22 The next classes have been renamed:
440441
* Text (deprecated) => TextLib
441442
* Collection (deprecated) => CollectionLib
442443
* Debug (deprecated) => DebugLib
443444
* It is because there are a dozen of libraries who use the same name for the classes.
444445
* **You can still use the same library without changes** but for new code I suggest to use the new names.
445-
* [next] FileLib::getDirFirstFile()
446+
* [new] FileLib::getDirFirstFile()
446447
* 1.21 added FileLib class
447448
* getDirFiles()
448449
* getDirFolders()

lib/CollectionLib.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* Class CollectionLib
1313
*
1414
* @package mapache_commons
15-
* @version 1.22 2024-08-10
15+
* @version 1.23 2024-08-12
1616
* @copyright Jorge Castro Castillo
1717
* @license Apache-2.0
1818
* @see https://github.com/EFTEC/mapache-commons

lib/DebugLib.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* Class Debug
1717
*
1818
* @package mapache_commons
19-
* @version 1.21 2024-08-10
19+
* @version 1.23 2024-08-12
2020
* @copyright Jorge Castro Castillo
2121
* @license Apache-2.0
2222
* @see https://github.com/EFTEC/mapache-commons

lib/FileLib.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* This class has a collection of functions to interact with files and directories.
1010
*
1111
* @package mapache_commons
12-
* @version 1.22 2024-08-10
12+
* @version 1.23 2024-08-12
1313
* @copyright Jorge Castro Castillo
1414
* @license Apache-2.0
1515
* @see https://github.com/EFTEC/mapache-commons

lib/TextLib.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* Class TextLib
1313
*
1414
* @package mapache_commons
15-
* @version 1.22 2024-08-10
15+
* @version 1.23 2024-08-12
1616
* @copyright Jorge Castro Castillo
1717
* @license Apache-2.0
1818
* @see https://github.com/EFTEC/mapache-commons

0 commit comments

Comments
 (0)