Skip to content

Commit 4fa09d6

Browse files
committed
Renamed to 'Splat' and bumped minimum required PHP version to 7.2
1 parent 7cbf28f commit 4fa09d6

File tree

8 files changed

+17
-17
lines changed

8 files changed

+17
-17
lines changed

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ tests export-ignore
66
.php_cs.dist export-ignore
77
.styleci.yml export-ignore
88
.travis.yml export-ignore
9-
glob.svg export-ignore
9+
splat.svg export-ignore
1010
phpunit.xml export-ignore
1111
psalm.xml export-ignore

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<p align="center">
2-
<img src="glob.svg" alt="Glob" width="50%">
2+
<img src="splat.svg" alt="Splat" width="50%">
33
</p>
44

55
<p align="center">
6-
<a href="https://github.com/PHLAK/Glob/blob/master/LICENSE"><img src="https://img.shields.io/github/license/PHLAK/Glob?style=flat-square" alt="License"></a>
6+
<a href="https://github.com/PHLAK/Splat/blob/master/LICENSE"><img src="https://img.shields.io/github/license/PHLAK/Splat?style=flat-square" alt="License"></a>
77
<a href="https://spectrum.chat/phlaknet"><img src="https://img.shields.io/badge/Join_the-Community-7b16ff.svg?style=flat-square" alt="Join our Community"></a>
88
<a href="https://github.com/users/PHLAK/sponsorship"><img src="https://img.shields.io/badge/Become_a-Sponsor-cc4195.svg?style=flat-square" alt="Become a Sponsor"></a>
99
<a href="https://paypal.me/ChrisKankiewicz"><img src="https://img.shields.io/badge/Make_a-Donation-006bb6.svg?style=flat-square" alt="One-time Donation"></a>
10-
<a href="https://travis-ci.com/PHLAK/Glob"><img src="https://img.shields.io/travis/com/PHLAK/Glob/master?style=flat-square" alt="Build Status"></a>
10+
<a href="https://travis-ci.com/PHLAK/Splat"><img src="https://img.shields.io/travis/com/PHLAK/Splat/master?style=flat-square" alt="Build Status"></a>
1111
<a href="https://styleci.io/repos/1375774"><img src="https://styleci.io/repos/1375774/shield?branch=master" alt="StyleCI"></a>
1212
</p>
1313

@@ -18,20 +18,20 @@ Glob-like file and pattern matching utility.
1818
Requirements
1919
------------
2020

21-
- [PHP](https://www.php.net/) >= 7.0
21+
- [PHP](https://www.php.net/) >= 7.2
2222

2323
Installation
2424
------------
2525

26-
composer require phlak/glob
26+
composer require phlak/splat
2727

2828
Usage
2929
-------------
3030

3131
### Initialization
3232

3333
```php
34-
use PHLAK\Utilities\Glob;
34+
use PHLAK\Splat\Glob;
3535

3636
new Glob($pattern);
3737
// or
@@ -175,16 +175,16 @@ Escape glob pattern characters from a string.
175175
Changelog
176176
---------
177177

178-
A list of changes can be found on the [GitHub Releases](https://github.com/PHLAK/Glob/releases) page.
178+
A list of changes can be found on the [GitHub Releases](https://github.com/PHLAK/Splat/releases) page.
179179

180180
Troubleshooting
181181
---------------
182182

183183
For general help and support join our [Spectrum Community](https://spectrum.chat/phlaknet) or reach out on [Twitter](https://twitter.com/PHLAK).
184184

185-
Please report bugs to the [GitHub Issue Tracker](https://github.com/PHLAK/Glob/issues).
185+
Please report bugs to the [GitHub Issue Tracker](https://github.com/PHLAK/Splat/issues).
186186

187187
Copyright
188188
---------
189189

190-
This project is licensed under the [MIT License](https://github.com/PHLAK/Glob/blob/master/LICENSE).
190+
This project is licensed under the [MIT License](https://github.com/PHLAK/Splat/blob/master/LICENSE).

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "phlak/glob",
2+
"name": "phlak/splat",
33
"description": "Glob-like pattern matching and utilities",
44
"type": "library",
55
"license": "MIT",
@@ -20,7 +20,7 @@
2020
}
2121
],
2222
"require": {
23-
"php": ">=7.0",
23+
"php": ">=7.2",
2424
"symfony/finder": "^5.0"
2525
},
2626
"require-dev": {
@@ -33,7 +33,7 @@
3333
},
3434
"autoload": {
3535
"psr-4": {
36-
"PHLAK\\Utilities\\": "src/"
36+
"PHLAK\\Splat\\": "src/"
3737
}
3838
},
3939
"autoload-dev": {

glob.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

psalm-baseline.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<files psalm-version="3.11.2@d470903722cfcbc1cd04744c5491d3e6d13ec3d9">
2+
<files psalm-version="3.11.4@58e1d8e68e5098bf4fbfdfb420c38d563f882549">
33
<file src="src/Glob.php">
44
<ReservedWord occurrences="1">
55
<code>void</code>

splat.svg

Lines changed: 1 addition & 0 deletions
Loading

src/Glob.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace PHLAK\Utilities;
3+
namespace PHLAK\Splat;
44

55
use Symfony\Component\Finder\Finder;
66
use Symfony\Component\Finder\SplFileInfo;

tests/GlobTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace Tests;
44

5-
use PHLAK\Utilities\Glob;
5+
use PHLAK\Splat\Glob;
66
use PHPUnit\Framework\TestCase;
77
use Symfony\Component\Finder\Finder;
88
use Symfony\Component\Finder\SplFileInfo;

0 commit comments

Comments
 (0)