Skip to content

Commit cc99f6a

Browse files
committed
Filesystem 3.1.0
1 parent d9fb9bc commit cc99f6a

File tree

6 files changed

+8
-6
lines changed

6 files changed

+8
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
<a name="3.1.0"></a>
2+
# [3.1.0](https://github.com/glowyphp/filesystem) (2021-06-03)
3+
* Added new method `directories`.
4+
* Added new method `files`.
5+
16
<a name="3.0.0"></a>
27
# [3.0.0](https://github.com/glowyphp/filesystem) (2021-12-23)
38
* Released under Glowy PHP Organization

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2022 Sergey Romanenko
3+
Copyright (c) Sergey Romanenko
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ Run tests
3333

3434
### License
3535
[The MIT License (MIT)](https://github.com/glowyphp/filesystem/blob/master/LICENSE)
36-
Copyright (c) 2022 [Sergey Romanenko](https://github.com/Awilum)
36+
Copyright (c) [Sergey Romanenko](https://github.com/Awilum)

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"authors": [
1313
{
1414
"name": "Sergey Romanenko",
15-
"email": "sergey.romanenko@flextype.org",
15+
"email": "awilum@msn.com",
1616
"homepage": "https://github.com/Awilum"
1717
}
1818
],

phpunit.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
</testsuites>
1212
<filter>
1313
<whitelist processUncoveredFilesFromWhitelist="true">
14-
<directory suffix=".php">./app</directory>
1514
<directory suffix=".php">./src</directory>
1615
</whitelist>
1716
</filter>

tests/FilesystemTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,6 @@
312312
$this->assertTrue($dirs2[5] == 'zed/zed-2');
313313
});
314314

315-
316315
test('directory files method', function (): void {
317316
if (PHP_OS_FAMILY === 'Windows') {
318317
$this->markTestSkipped('The operating system is Windows');
@@ -354,7 +353,6 @@
354353
$this->assertFalse($filesystem->file($this->tempDir . '/1/1.txt')->exists());
355354
});
356355

357-
358356
test('filesystem glob method', function (): void {
359357
$filesystem = new Filesystem();
360358
$filesystem->file($this->tempDir . '/1.txt')->put('hello');

0 commit comments

Comments
 (0)