Skip to content

Commit 1bf68b5

Browse files
committed
Migrate to Laravel 8
1 parent 205205a commit 1bf68b5

File tree

5 files changed

+21
-25
lines changed

5 files changed

+21
-25
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## v0.7.0 (2020-09-16)
4+
### Added
5+
- Laravel 8 compatibility
6+
37
## v0.6.0 (2020-05-13)
48
### Changed
59
- Update composer dependencies ([#11](https://github.com/thepinecode/blade-filters/pull/11))

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 Pine
3+
Copyright (c) Cone Development
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

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
"license": "MIT",
66
"authors": [
77
{
8-
"name": "Gergő D. Nagy",
9-
"email": "hello@iamgergo.com"
8+
"name": "Cone Development",
9+
"email": "hello@conedevelopment.com"
1010
}
1111
],
1212
"autoload": {
@@ -21,7 +21,7 @@
2121
},
2222
"require": {
2323
"php": "^7.2.5",
24-
"illuminate/support": "^6.0 || ^7.0"
24+
"illuminate/support": "^6.0 || ^7.0 || ^8.0"
2525
},
2626
"require-dev": {
2727
"laravel/laravel": "dev-master",

phpunit.xml

+11-19
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,13 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit backupGlobals="false"
3-
backupStaticAttributes="false"
4-
bootstrap="vendor/autoload.php"
5-
colors="true"
6-
convertErrorsToExceptions="true"
7-
convertNoticesToExceptions="true"
8-
convertWarningsToExceptions="true"
9-
processIsolation="false"
10-
stopOnFailure="false">
11-
<testsuites>
12-
<testsuite name="Pine Test Suite">
13-
<directory suffix="Test.php">./tests</directory>
14-
</testsuite>
15-
</testsuites>
16-
<filter>
17-
<whitelist processUncoveredFilesFromWhitelist="true">
18-
<directory>./src/</directory>
19-
</whitelist>
20-
</filter>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" backupStaticAttributes="false" bootstrap="vendor/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
3+
<coverage processUncoveredFiles="true">
4+
<include>
5+
<directory>./src/</directory>
6+
</include>
7+
</coverage>
8+
<testsuites>
9+
<testsuite name="Pine Test Suite">
10+
<directory suffix="Test.php">./tests</directory>
11+
</testsuite>
12+
</testsuites>
2113
</phpunit>

src/BladeFilters.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public static function substr($value, $start, $length = null)
9191
*/
9292
public static function ucfirst($value)
9393
{
94-
return mb_strtoupper(mb_substr($value, 0, 1)) . mb_substr($value, 1);
94+
return mb_strtoupper(mb_substr($value, 0, 1)).mb_substr($value, 1);
9595
}
9696

9797
/**
@@ -102,7 +102,7 @@ public static function ucfirst($value)
102102
*/
103103
public static function lcfirst($value)
104104
{
105-
return mb_strtolower(mb_substr($value, 0, 1)) . mb_substr($value, 1);
105+
return mb_strtolower(mb_substr($value, 0, 1)).mb_substr($value, 1);
106106
}
107107

108108
/**

0 commit comments

Comments
 (0)