Skip to content

Commit ac2521f

Browse files
committed
Upgrade to Laravel 8.x
1 parent 8b2cc66 commit ac2521f

File tree

6 files changed

+8
-205
lines changed

6 files changed

+8
-205
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
language: php
22

33
php:
4-
- 7.2
54
- 7.3
65
- 7.4
76

README.md

Lines changed: 1 addition & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ Laravel-specific and pure PHP Helper Functions.
1717

1818
| Laravel | Helper Functions |
1919
| ------- | :-------------------------------------------------------------------------: |
20+
| 8.x | [8.x](https://github.com/dmitry-ivanov/laravel-helper-functions/tree/8.x) |
2021
| 7.x | [7.x](https://github.com/dmitry-ivanov/laravel-helper-functions/tree/7.x) |
2122
| 6.x | [6.x](https://github.com/dmitry-ivanov/laravel-helper-functions/tree/6.x) |
2223
| 5.8.* | [5.8.*](https://github.com/dmitry-ivanov/laravel-helper-functions/tree/5.8) |
@@ -85,10 +86,6 @@ Laravel-specific and pure PHP Helper Functions.
8586
- [Json](#json)
8687
- [is_json](#is_json)
8788
88-
- [Strings](#strings)
89-
- [str_lower](#str_lower)
90-
- [str_upper](#str_upper)
91-
9289
- [System](#system)
9390
- [is_windows_os](#is_windows_os)
9491
@@ -435,32 +432,6 @@ is_json('{"foo":1,"bar":2,"baz":3}', true);
435432
// ["foo" => 1, "bar" => 2, "baz" => 3]
436433
```
437434
438-
## Strings
439-
440-
#### `str_lower()`
441-
442-
> Deprecated, use the `Illuminate\Support\Str::lower()` instead.
443-
444-
Convert string to lowercase, assuming it's in the `UTF-8` encoding:
445-
446-
```php
447-
str_lower('TeSt');
448-
449-
// "test"
450-
```
451-
452-
#### `str_upper()`
453-
454-
> Deprecated, use the `Illuminate\Support\Str::upper()` instead.
455-
456-
Convert string to uppercase, assuming it's in the `UTF-8` encoding:
457-
458-
```php
459-
str_upper('TeSt');
460-
461-
// "TEST"
462-
```
463-
464435
## System
465436
466437
#### `is_windows_os()`

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,22 @@
1212
"email": "dmitry.g.ivanov@gmail.com"
1313
}],
1414
"require": {
15-
"php": "^7.2.5",
15+
"php": "^7.3",
1616
"ext-dom": "*",
1717
"ext-json": "*",
1818
"ext-simplexml": "*",
19-
"illuminate/support": "^7.0",
19+
"illuminate/support": "^8.0",
2020
"nesbot/carbon": "^2.17",
21-
"symfony/filesystem": "^5.0",
22-
"symfony/finder": "^5.0",
23-
"symfony/process": "^5.0",
24-
"symfony/var-dumper": "^5.0",
21+
"symfony/filesystem": "^5.1",
22+
"symfony/finder": "^5.1",
23+
"symfony/process": "^5.1",
24+
"symfony/var-dumper": "^5.1",
2525
"spatie/array-to-xml": "^2.7"
2626
},
2727
"require-dev": {
2828
"phpunit/phpunit": "^8.4|^9.0",
2929
"mockery/mockery": "^1.3.1",
30-
"illuminated/testing-tools": "^7.0"
30+
"illuminated/testing-tools": "^8.0"
3131
},
3232
"autoload": {
3333
"files": [

src/str.php

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

tests/str/StrLowerTest.php

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

tests/str/StrUpperTest.php

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

0 commit comments

Comments
 (0)