Skip to content

Commit

Permalink
Update APP_VERSION to 3.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-chetan committed Sep 28, 2024
1 parent f0b663d commit 28fc893
Show file tree
Hide file tree
Showing 8 changed files with 429 additions and 514 deletions.
2 changes: 1 addition & 1 deletion .env.dev
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
APP_NAME=Revive
APP_VERSION=3.0.0
APP_VERSION=3.0.2
2 changes: 1 addition & 1 deletion app/Commands/GitHubActionsCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use Illuminate\Support\Str;
use LaravelZero\Framework\Commands\Command;

use function Termwind\{render};
use function Termwind\render;

class GitHubActionsCommand extends Command
{
Expand Down
2 changes: 1 addition & 1 deletion app/Commands/HuskyHooksCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use RuntimeException;
use Symfony\Component\Process\Process;

use function Termwind\{render};
use function Termwind\render;

class HuskyHooksCommand extends Command
{
Expand Down
22 changes: 4 additions & 18 deletions app/Support/Tool.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace App\Support;

use function Termwind\{render};
use function Termwind\render;

abstract class Tool
{
Expand All @@ -16,30 +16,16 @@ abstract public function fix(): int;

public function heading(string $heading): void
{
render('<div class="px-1 bg-green-300 text-black w-full text-center font-bold">' . $heading . '</div>');
render('<div class="font-bold bg-yellow-800 px-1">=> ' . $heading . '</div>');
}

public function success(string $message): void
{
render(<<<HTML
<div class="py-1 ml-2">
<div class="px-1 bg-green-300 text-black">Success</div>
<em class="ml-1">
{$message}
</em>
</div>
HTML);
render('<div class="text-green-900 bg-green-300 px-1 font-bold">>> success: ' . $message . '</div>');
}

public function failure(string $message): void
{
render(<<<HTML
<div class="py-1 ml-2">
<div class="px-1 bg-red-300 text-black">Error</div>
<em class="ml-1">
{$message}
</em>
</div>
HTML);
render('<div class="text-red-900 bg-red-300 px-1 font-bold">!! error: ' . $message . '</div>');
}
}
12 changes: 5 additions & 7 deletions composer-dev.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,18 @@
"mrchetan/php_standard": "^4.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.59",
"friendsofphp/php-cs-fixer": "^3.64",
"laravel-zero/framework": "^11.0",
"laravel/pint": "^1.16",
"nunomaduro/termwind": "^2.0",
"pestphp/pest": "^2.34",
"laravel/pint": "^1.18",
"nunomaduro/termwind": "^2.1",
"pestphp/pest": "^2.35",
"rector/rector": "^1.2",
"spatie/invade": "^1.1",
"tightenco/tlint": "^9.3"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
"App\\": "app/"
},
"exclude-from-classmap": [
"/tests/Fixtures/*"
Expand Down
84 changes: 42 additions & 42 deletions composer-dev.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "da8bda8473d1392e8b38a9024cd9befb",
"content-hash": "a7008abecbe86cf8cf916436cc224547",
"packages": [
{
"name": "brick/math",
Expand Down Expand Up @@ -1866,16 +1866,16 @@
},
{
"name": "nunomaduro/termwind",
"version": "v2.0.1",
"version": "v2.1.0",
"source": {
"type": "git",
"url": "https://github.com/nunomaduro/termwind.git",
"reference": "58c4c58cf23df7f498daeb97092e34f5259feb6a"
"reference": "e5f21eade88689536c0cdad4c3cd75f3ed26e01a"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/nunomaduro/termwind/zipball/58c4c58cf23df7f498daeb97092e34f5259feb6a",
"reference": "58c4c58cf23df7f498daeb97092e34f5259feb6a",
"url": "https://api.github.com/repos/nunomaduro/termwind/zipball/e5f21eade88689536c0cdad4c3cd75f3ed26e01a",
"reference": "e5f21eade88689536c0cdad4c3cd75f3ed26e01a",
"shasum": ""
},
"require": {
Expand All @@ -1885,11 +1885,11 @@
},
"require-dev": {
"ergebnis/phpstan-rules": "^2.2.0",
"illuminate/console": "^11.0.0",
"laravel/pint": "^1.14.0",
"mockery/mockery": "^1.6.7",
"pestphp/pest": "^2.34.1",
"phpstan/phpstan": "^1.10.59",
"illuminate/console": "^11.1.1",
"laravel/pint": "^1.15.0",
"mockery/mockery": "^1.6.11",
"pestphp/pest": "^2.34.6",
"phpstan/phpstan": "^1.10.66",
"phpstan/phpstan-strict-rules": "^1.5.2",
"symfony/var-dumper": "^7.0.4",
"thecodingmachine/phpstan-strict-rules": "^1.0.0"
Expand Down Expand Up @@ -1934,7 +1934,7 @@
],
"support": {
"issues": "https://github.com/nunomaduro/termwind/issues",
"source": "https://github.com/nunomaduro/termwind/tree/v2.0.1"
"source": "https://github.com/nunomaduro/termwind/tree/v2.1.0"
},
"funding": [
{
Expand All @@ -1950,7 +1950,7 @@
"type": "github"
}
],
"time": "2024-03-06T16:17:14+00:00"
"time": "2024-09-05T15:25:50+00:00"
},
{
"name": "phpmyadmin/sql-parser",
Expand Down Expand Up @@ -5296,16 +5296,16 @@
},
{
"name": "friendsofphp/php-cs-fixer",
"version": "v3.59.3",
"version": "v3.64.0",
"source": {
"type": "git",
"url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
"reference": "30ba9ecc2b0e5205e578fe29973c15653d9bfd29"
"reference": "58dd9c931c785a79739310aef5178928305ffa67"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/30ba9ecc2b0e5205e578fe29973c15653d9bfd29",
"reference": "30ba9ecc2b0e5205e578fe29973c15653d9bfd29",
"url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/58dd9c931c785a79739310aef5178928305ffa67",
"reference": "58dd9c931c785a79739310aef5178928305ffa67",
"shasum": ""
},
"require": {
Expand Down Expand Up @@ -5387,15 +5387,15 @@
],
"support": {
"issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
"source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.59.3"
"source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.64.0"
},
"funding": [
{
"url": "https://github.com/keradus",
"type": "github"
}
],
"time": "2024-06-16T14:17:03+00:00"
"time": "2024-08-30T23:09:38+00:00"
},
{
"name": "graham-campbell/result-type",
Expand Down Expand Up @@ -6028,16 +6028,16 @@
},
{
"name": "laravel/pint",
"version": "v1.16.2",
"version": "v1.18.1",
"source": {
"type": "git",
"url": "https://github.com/laravel/pint.git",
"reference": "51f1ba679a6afe0315621ad143d788bd7ded0eca"
"reference": "35c00c05ec43e6b46d295efc0f4386ceb30d50d9"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/laravel/pint/zipball/51f1ba679a6afe0315621ad143d788bd7ded0eca",
"reference": "51f1ba679a6afe0315621ad143d788bd7ded0eca",
"url": "https://api.github.com/repos/laravel/pint/zipball/35c00c05ec43e6b46d295efc0f4386ceb30d50d9",
"reference": "35c00c05ec43e6b46d295efc0f4386ceb30d50d9",
"shasum": ""
},
"require": {
Expand All @@ -6048,13 +6048,13 @@
"php": "^8.1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.59.3",
"illuminate/view": "^10.48.12",
"larastan/larastan": "^2.9.7",
"friendsofphp/php-cs-fixer": "^3.64.0",
"illuminate/view": "^10.48.20",
"larastan/larastan": "^2.9.8",
"laravel-zero/framework": "^10.4.0",
"mockery/mockery": "^1.6.12",
"nunomaduro/termwind": "^1.15.1",
"pestphp/pest": "^2.34.8"
"pestphp/pest": "^2.35.1"
},
"bin": [
"builds/pint"
Expand Down Expand Up @@ -6090,7 +6090,7 @@
"issues": "https://github.com/laravel/pint/issues",
"source": "https://github.com/laravel/pint"
},
"time": "2024-07-09T15:58:08+00:00"
"time": "2024-09-24T17:22:50+00:00"
},
{
"name": "league/flysystem",
Expand Down Expand Up @@ -6691,21 +6691,21 @@
},
{
"name": "pestphp/pest",
"version": "v2.34.9",
"version": "v2.35.0",
"source": {
"type": "git",
"url": "https://github.com/pestphp/pest.git",
"reference": "ef120125e036bf84c9e46a9e62219702f5b92e16"
"reference": "d0ff2c8ec294b7aa7fcb0f3ddc4fdec864234646"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/pestphp/pest/zipball/ef120125e036bf84c9e46a9e62219702f5b92e16",
"reference": "ef120125e036bf84c9e46a9e62219702f5b92e16",
"url": "https://api.github.com/repos/pestphp/pest/zipball/d0ff2c8ec294b7aa7fcb0f3ddc4fdec864234646",
"reference": "d0ff2c8ec294b7aa7fcb0f3ddc4fdec864234646",
"shasum": ""
},
"require": {
"brianium/paratest": "^7.3.1",
"nunomaduro/collision": "^7.10.0|^8.1.1",
"nunomaduro/collision": "^7.10.0|^8.3.0",
"nunomaduro/termwind": "^1.15.1|^2.0.1",
"pestphp/pest-plugin": "^2.1.1",
"pestphp/pest-plugin-arch": "^2.7.0",
Expand All @@ -6719,8 +6719,8 @@
},
"require-dev": {
"pestphp/pest-dev-tools": "^2.16.0",
"pestphp/pest-plugin-type-coverage": "^2.8.4",
"symfony/process": "^6.4.0|^7.1.1"
"pestphp/pest-plugin-type-coverage": "^2.8.5",
"symfony/process": "^6.4.0|^7.1.3"
},
"bin": [
"bin/pest"
Expand Down Expand Up @@ -6783,7 +6783,7 @@
],
"support": {
"issues": "https://github.com/pestphp/pest/issues",
"source": "https://github.com/pestphp/pest/tree/v2.34.9"
"source": "https://github.com/pestphp/pest/tree/v2.35.0"
},
"funding": [
{
Expand All @@ -6795,7 +6795,7 @@
"type": "github"
}
],
"time": "2024-07-11T08:36:26+00:00"
"time": "2024-08-02T10:57:29+00:00"
},
{
"name": "pestphp/pest-plugin",
Expand Down Expand Up @@ -8488,16 +8488,16 @@
},
{
"name": "rector/rector",
"version": "1.2.1",
"version": "1.2.2",
"source": {
"type": "git",
"url": "https://github.com/rectorphp/rector.git",
"reference": "b38a3eed3ce2046f40c001255e2fec9d2746bacf"
"reference": "044e6364017882d1e346da8690eeabc154da5495"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/rectorphp/rector/zipball/b38a3eed3ce2046f40c001255e2fec9d2746bacf",
"reference": "b38a3eed3ce2046f40c001255e2fec9d2746bacf",
"url": "https://api.github.com/repos/rectorphp/rector/zipball/044e6364017882d1e346da8690eeabc154da5495",
"reference": "044e6364017882d1e346da8690eeabc154da5495",
"shasum": ""
},
"require": {
Expand Down Expand Up @@ -8535,15 +8535,15 @@
],
"support": {
"issues": "https://github.com/rectorphp/rector/issues",
"source": "https://github.com/rectorphp/rector/tree/1.2.1"
"source": "https://github.com/rectorphp/rector/tree/1.2.2"
},
"funding": [
{
"url": "https://github.com/tomasvotruba",
"type": "github"
}
],
"time": "2024-07-16T00:22:54+00:00"
"time": "2024-07-25T07:44:34+00:00"
},
{
"name": "sebastian/cli-parser",
Expand Down
13 changes: 4 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,27 +29,22 @@
"mrchetan/php_standard": "^4.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.59",
"friendsofphp/php-cs-fixer": "^3.64",
"laravel-zero/framework": "^11.0",
"laravel/pint": "^1.16",
"nunomaduro/termwind": "^2.0",
"laravel/pint": "^1.18",
"nunomaduro/termwind": "^2.1",
"spatie/invade": "^1.1",
"tightenco/tlint": "^9.3"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
"App\\": "app/"
},
"exclude-from-classmap": [
"/tests/Fixtures/*"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
},
"files": [
"./vendor/squizlabs/php_codesniffer/autoload.php"
]
Expand Down
Loading

0 comments on commit 28fc893

Please sign in to comment.