diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
new file mode 100644
index 0000000..9a4a5ba
--- /dev/null
+++ b/.github/workflows/build.yml
@@ -0,0 +1,66 @@
+name: Build
+
+on:
+ push:
+ branches: [ master ]
+ pull_request:
+ release:
+ types: [ created ]
+
+jobs:
+ build-phar:
+ runs-on: ubuntu-latest
+ name: Build PHAR
+ strategy:
+ fail-fast: false
+ matrix:
+ php: [ '8.1' ]
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v3
+ with:
+ fetch-depth: 0
+
+ - name: Setup PHP
+ uses: shivammathur/setup-php@v2
+ with:
+ php-version: ${{ matrix.php }}
+ ini-values: phar.readonly=0
+ tools: composer
+ coverage: none
+
+ - name: Install Composer dependencies
+ uses: ramsey/composer-install@v2
+
+ - name: Build PHAR
+ run: |
+ cp application application.phar
+ composer build -- --build-version
+
+ # Smoke test
+ - name: Ensure the PHAR works
+ run: builds/branch-usage-checker --version
+
+ - uses: actions/upload-artifact@v3
+ name: Upload the PHAR artifact
+ with:
+ name: branch-usage-checker
+ path: builds/branch-usage-checker
+
+ publish-phar:
+ runs-on: ubuntu-latest
+ name: Publish the PHAR
+ needs:
+ - 'build-phar'
+ if: github.event_name == 'release'
+ steps:
+ - uses: actions/download-artifact@v3
+ with:
+ name: branch-usage-checker
+ path: builds/
+
+ - name: Upload box.phar
+ uses: softprops/action-gh-release@v1
+ with:
+ token: ${{ secrets.GITHUB_TOKEN }}
+ files: builds/branch-usage-checker
diff --git a/.gitignore b/.gitignore
index 20d9dbd..b9292c5 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,3 +3,4 @@
/.vscode
/.vagrant
.phpunit.result.cache
+/builds/branch-usage-checker
diff --git a/app/Commands/CheckCommand.php b/app/Commands/CheckCommand.php
index 9087877..2b8d4f2 100644
--- a/app/Commands/CheckCommand.php
+++ b/app/Commands/CheckCommand.php
@@ -6,7 +6,8 @@ use App\Dto\PackagistApiPackagePayload;
use Illuminate\Support\Facades\Http;
use LaravelZero\Framework\Commands\Command;
-class CheckCommand extends Command {
+class CheckCommand extends Command
+{
protected $signature = 'check
{vendor : Package vendor (required)}
{package : Package name (required)}
@@ -17,119 +18,128 @@ class CheckCommand extends Command {
private string $vendor = '';
private string $package = '';
private string $filter = '';
- private int $total_branches = 0;
+ private int $totalBranches = 0;
- public function handle() : int {
- $this->vendor = (string) $this->argument( 'vendor' );
- $this->package = (string) $this->argument( 'package' );
- $months = (int) $this->argument( 'months' );
+ public function handle(): int
+ {
+ $this->vendor = (string)$this->argument('vendor');
+ $this->package = (string)$this->argument('package');
+ $months = (int)$this->argument('months');
- $this->info( 'Checking: ' . sprintf( '%s/%s', $this->vendor, $this->package ) );
- $this->info( 'Months: ' . $months );
+ $this->info('Checking: ' . sprintf('%s/%s', $this->vendor, $this->package));
+ $this->info('Months: ' . $months);
- $payload = Http::get( sprintf(
- 'https://packagist.org/packages/%s/%s.json',
- $this->vendor,
- $this->package
- ) );
+ $payload = Http::get(
+ sprintf(
+ 'https://packagist.org/packages/%s/%s.json',
+ $this->vendor,
+ $this->package
+ )
+ );
- $this->filter = now()->subMonths( $months )->day( 1 )->toDateString();
+ $this->filter = now()->subMonths($months)->day(1)->toDateString();
try {
- $pkg = new PackagistApiPackagePayload( $payload->json() );
- $this->info( 'Found the package. Type: ' . $pkg->type );
+ $pkg = new PackagistApiPackagePayload($payload->json());
+ $this->info('Found the package. Type: ' . $pkg->type);
- $versions = collect( $pkg->versions ?? [] )
+ $versions = collect($pkg->versions ?? [])
->keys()
// Filter actual versions out.
- ->filter( fn( $version ) => \str_starts_with( $version, 'dev-' ) )
+ ->filter(fn($version) => \str_starts_with($version, 'dev-'))
->sort();
- $this->total_branches = $versions->count();
+ $this->totalBranches = $versions->count();
- $this->info( sprintf(
- 'Package has %d branches. Starting to download statistics.',
- $this->total_branches
- ) );
+ $this->info(
+ sprintf(
+ 'Package has %d branches. Starting to download statistics.',
+ $this->totalBranches
+ )
+ );
- $statistics = collect( $versions )
- ->mapWithKeys( fn( $branch ) => $this->get_statistics( $branch ) )
+ $statistics = collect($versions)
+ ->mapWithKeys(fn($branch) => $this->getStatistics($branch))
->toArray();
- $this->info( 'Downloaded statistics...' );
+ $this->info('Downloaded statistics...');
- $this->output_table( $statistics );
- $this->output_suggestions( $statistics );
- }
- catch ( \Exception $e ) {
- $this->error( $e->getMessage(), $e );
+ $this->outputTable($statistics);
+ $this->outputSuggestions($statistics);
+ } catch (\Exception $e) {
+ $this->error($e->getMessage(), $e);
}
return 0;
}
- private function get_statistics( $branch ) : array {
- $payload = Http::get( sprintf(
- 'https://packagist.org/packages/%s/%s/stats/%s.json?average=monthly&from=%s',
- $this->vendor,
- $this->package,
- $branch,
- $this->filter
- ) );
+ private function getStatistics($branch): array
+ {
+ $payload = Http::get(
+ sprintf(
+ 'https://packagist.org/packages/%s/%s/stats/%s.json?average=monthly&from=%s',
+ $this->vendor,
+ $this->package,
+ $branch,
+ $this->filter
+ )
+ );
- $data = collect( $payload->json() );
- $labels = collect( $data->get( 'labels', [] ) )->toArray();
- $values = collect( $data->get( 'values', [] ) )->flatten()->toArray();
+ $data = collect($payload->json());
+ $labels = collect($data->get('labels', []))->toArray();
+ $values = collect($data->get('values', []))->flatten()->toArray();
$labels[] = 'Total';
- $values[] = array_sum( $values );
+ $values[] = array_sum($values);
- return [ $branch => \array_combine( $labels, $values ) ];
+ return [$branch => \array_combine($labels, $values)];
}
- private function output_table( array $statistics ) : void {
- if ( empty( $statistics ) ) {
- $this->info( 'No statistics found... Stopping.' );
- exit( 0 );
+ private function outputTable(array $statistics): void
+ {
+ if (empty($statistics)) {
+ $this->info('No statistics found... Stopping.');
+ exit(0);
}
- $tableHeaders = [ '' => 'Branch' ];
+ $tableHeaders = ['' => 'Branch'];
$tableBranches = [];
- foreach ( $statistics as $branch => $stats ) {
- foreach ( $stats as $m => $v ) {
- $tableHeaders[ $m ] = (string) $m;
- $tableBranches[ $branch ][ $branch ] = $branch;
- $tableBranches[ $branch ][ $m ] = (string) $v;
+ foreach ($statistics as $branch => $stats) {
+ foreach ($stats as $m => $v) {
+ $tableHeaders[$m] = (string)$m;
+ $tableBranches[$branch][$branch] = $branch;
+ $tableBranches[$branch][$m] = (string)$v;
}
}
$this->line('');
- $this->table( $tableHeaders, $tableBranches );
+ $this->table($tableHeaders, $tableBranches);
}
- private function output_suggestions( array $statistics = [] ) : void {
+ private function outputSuggestions(array $statistics = []): void
+ {
$deletable = [];
- if ( empty( $statistics ) ) {
- $this->info( 'No statistics to give suggestions for. Quitting...' );
- exit( 0 );
+ if (empty($statistics)) {
+ $this->info('No statistics to give suggestions for. Quitting...');
+ exit(0);
}
- foreach ( $statistics as $k => $values ) {
- if ( ! empty( $values['Total'] ) ) {
+ foreach ($statistics as $k => $values) {
+ if (!empty($values['Total'])) {
continue;
}
- $deletable[ $k ] = $values['Total'];
+ $deletable[$k] = $values['Total'];
}
- if ( empty( $deletable ) ) {
- $this->info( 'No suggestions available. Good job!' );
- exit( 0 );
+ if (empty($deletable)) {
+ $this->info('No suggestions available. Good job!');
+ exit(0);
}
- $keys = array_keys( $deletable );
+ $keys = array_keys($deletable);
- $branches = collect( $keys )->mapWithKeys( function ( $branch ) {
+ $branches = collect($keys)->mapWithKeys(function ($branch) {
return [
$branch => [
$branch,
@@ -141,15 +151,17 @@ class CheckCommand extends Command {
),
],
];
- } );
+ });
$this->line('');
- $this->info( sprintf(
- 'Found %d branches (out of %d total) with no downloads since %s',
- $branches->count(),
- $this->total_branches,
- $this->filter
- ) );
- $this->table( [ 'Branch', 'URL' ], $branches );
+ $this->info(
+ sprintf(
+ 'Found %d branches (out of %d total) with no downloads since %s',
+ $branches->count(),
+ $this->totalBranches,
+ $this->filter
+ )
+ );
+ $this->table(['Branch', 'URL'], $branches);
}
}
diff --git a/app/Commands/InspireCommand.php b/app/Commands/InspireCommand.php
index 20afdca..add795b 100644
--- a/app/Commands/InspireCommand.php
+++ b/app/Commands/InspireCommand.php
@@ -4,6 +4,7 @@ namespace App\Commands;
use Illuminate\Console\Scheduling\Schedule;
use LaravelZero\Framework\Commands\Command;
+
use function Termwind\{render};
class InspireCommand extends Command
@@ -29,20 +30,23 @@ class InspireCommand extends Command
*/
public function handle()
{
- render(<<<'HTML'
+ render(
+ <<<'HTML'
Laravel Zero
Simplicity is the ultimate sophistication.
- HTML);
+ HTML
+ );
}
/**
* Define the command's schedule.
*
- * @param \Illuminate\Console\Scheduling\Schedule $schedule
+ * @param \Illuminate\Console\Scheduling\Schedule $schedule
+ *
* @return void
*/
public function schedule(Schedule $schedule)
diff --git a/app/Dto/GitHubApiBranch.php b/app/Dto/GitHubApiBranch.php
index 045a13f..9eabb18 100644
--- a/app/Dto/GitHubApiBranch.php
+++ b/app/Dto/GitHubApiBranch.php
@@ -4,7 +4,8 @@ namespace App\Dto;
use Spatie\DataTransferObject\DataTransferObject;
-class GitHubApiBranch extends DataTransferObject {
+class GitHubApiBranch extends DataTransferObject
+{
public string $name;
public bool $protected;
}
diff --git a/app/Dto/PackagistApiPackagePayload.php b/app/Dto/PackagistApiPackagePayload.php
index 7a5af26..70c7262 100644
--- a/app/Dto/PackagistApiPackagePayload.php
+++ b/app/Dto/PackagistApiPackagePayload.php
@@ -4,7 +4,8 @@ namespace App\Dto;
use Spatie\DataTransferObject\Attributes\MapFrom;
-class PackagistApiPackagePayload extends \Spatie\DataTransferObject\DataTransferObject {
+class PackagistApiPackagePayload extends \Spatie\DataTransferObject\DataTransferObject
+{
#[MapFrom('package.name')]
public string $name = '';
#[MapFrom('package.description')]
diff --git a/app/Dto/PackagistApiStatsPayload.php b/app/Dto/PackagistApiStatsPayload.php
index 9bbec6f..43e34b8 100644
--- a/app/Dto/PackagistApiStatsPayload.php
+++ b/app/Dto/PackagistApiStatsPayload.php
@@ -4,7 +4,8 @@ namespace App\Dto;
use Spatie\DataTransferObject\Attributes\MapFrom;
-class PackagistApiStatsPayload extends \Spatie\DataTransferObject\DataTransferObject {
+class PackagistApiStatsPayload extends \Spatie\DataTransferObject\DataTransferObject
+{
public array $labels;
#[MapFrom('values.[0]')]
public string $version;
diff --git a/app/Fetchers/GitHubRestApi.php b/app/Fetchers/GitHubRestApi.php
index 3ba9575..549129a 100644
--- a/app/Fetchers/GitHubRestApi.php
+++ b/app/Fetchers/GitHubRestApi.php
@@ -4,9 +4,11 @@ namespace App\Fetchers;
use Illuminate\Support\Facades\Http;
-class GitHubRestApi {
- public static function getBranches( string $vendor, string $package ) : array {
- $pages = self::downloader( $vendor, $package );
+class GitHubRestApi
+{
+ public static function getBranches(string $vendor, string $package): array
+ {
+ $pages = self::downloader($vendor, $package);
$pages = \collect($pages)
->flatten(1)
->toArray();
@@ -14,7 +16,8 @@ class GitHubRestApi {
return $pages;
}
- public static function downloader( $vendor, $package ) : array {
+ public static function downloader($vendor, $package): array
+ {
$responses = [];
$continue = true;
@@ -25,15 +28,15 @@ class GitHubRestApi {
$package
);
- while ( $continue ) {
- $response = Http::get( $gh_api . '&page=' . $page );
+ while ($continue) {
+ $response = Http::get($gh_api . '&page=' . $page);
- if ( empty( $response ) ) {
+ if (empty($response)) {
$continue = false;
}
- $responses[ $page ] = $response;
- $page ++;
+ $responses[$page] = $response;
+ $page++;
}
return $responses;
diff --git a/application b/application
new file mode 100644
index 0000000..0f19d23
--- /dev/null
+++ b/application
@@ -0,0 +1,47 @@
+#!/usr/bin/env php
+make(Illuminate\Contracts\Console\Kernel::class);
+
+$status = $kernel->handle(
+ $input = new Symfony\Component\Console\Input\ArgvInput(),
+ new Symfony\Component\Console\Output\ConsoleOutput()
+);
+
+/**
+ * Shutdown The Application
+ *
+ * Once Artisan has finished running, we will fire off the shutdown events
+ * so that any final work may be done by the application before we shut
+ * down the process. This is the last thing to happen to the request.
+ *
+ */
+$kernel->terminate($input, $status);
+
+exit($status);
diff --git a/bootstrap/app.php b/bootstrap/app.php
index cb66136..39310bb 100644
--- a/bootstrap/app.php
+++ b/bootstrap/app.php
@@ -1,30 +1,23 @@
singleton(
Illuminate\Contracts\Console\Kernel::class,
@@ -36,15 +29,12 @@ $app->singleton(
Illuminate\Foundation\Exceptions\Handler::class
);
-/*
-|--------------------------------------------------------------------------
-| Return The Application
-|--------------------------------------------------------------------------
-|
-| This script returns the application instance. The instance is given to
-| the calling script so we can separate the building of the instances
-| from the actual running of the application and sending responses.
-|
-*/
+/**
+ * Return The Application
+ *
+ * This script returns the application instance. The instance is given to
+ * the calling script so we can separate the building of the instances
+ * from the actual running of the application and sending responses.
+ */
return $app;
diff --git a/branch-usage-checker b/branch-usage-checker
deleted file mode 100755
index 33aa752..0000000
--- a/branch-usage-checker
+++ /dev/null
@@ -1,53 +0,0 @@
-#!/usr/bin/env php
-make(Illuminate\Contracts\Console\Kernel::class);
-
-$status = $kernel->handle(
- $input = new Symfony\Component\Console\Input\ArgvInput,
- new Symfony\Component\Console\Output\ConsoleOutput
-);
-
-/*
-|--------------------------------------------------------------------------
-| Shutdown The Application
-|--------------------------------------------------------------------------
-|
-| Once Artisan has finished running, we will fire off the shutdown events
-| so that any final work may be done by the application before we shut
-| down the process. This is the last thing to happen to the request.
-|
-*/
-
-$kernel->terminate($input, $status);
-
-exit($status);
diff --git a/composer.json b/composer.json
index 76d52bf..92232f9 100644
--- a/composer.json
+++ b/composer.json
@@ -70,7 +70,10 @@
"post-autoload-dump": [
"composer normalize"
],
- "build": "php branch-usage-checker app:build branch-usage-checker",
- "x": "@php branch-usage-checker"
+ "build": [
+ "cp application application.phar",
+ "@php application app:build branch-usage-checker"
+ ],
+ "x": "@php builds/branch-usage-checker"
}
}
diff --git a/composer.lock b/composer.lock
index 6efd8a2..7e33c5d 100644
--- a/composer.lock
+++ b/composer.lock
@@ -8,23 +8,23 @@
"packages": [
{
"name": "doctrine/inflector",
- "version": "2.0.5",
+ "version": "2.0.6",
"source": {
"type": "git",
"url": "https://github.com/doctrine/inflector.git",
- "reference": "ade2b3bbfb776f27f0558e26eed43b5d9fe1b392"
+ "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/inflector/zipball/ade2b3bbfb776f27f0558e26eed43b5d9fe1b392",
- "reference": "ade2b3bbfb776f27f0558e26eed43b5d9fe1b392",
+ "url": "https://api.github.com/repos/doctrine/inflector/zipball/d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
+ "reference": "d9d313a36c872fd6ee06d9a6cbcf713eaa40f024",
"shasum": ""
},
"require": {
"php": "^7.2 || ^8.0"
},
"require-dev": {
- "doctrine/coding-standard": "^9",
+ "doctrine/coding-standard": "^10",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-phpunit": "^1.1",
"phpstan/phpstan-strict-rules": "^1.3",
@@ -79,7 +79,7 @@
],
"support": {
"issues": "https://github.com/doctrine/inflector/issues",
- "source": "https://github.com/doctrine/inflector/tree/2.0.5"
+ "source": "https://github.com/doctrine/inflector/tree/2.0.6"
},
"funding": [
{
@@ -95,7 +95,7 @@
"type": "tidelift"
}
],
- "time": "2022-09-07T09:01:28+00:00"
+ "time": "2022-10-20T09:10:12+00:00"
},
{
"name": "fruitcake/php-cors",
@@ -382,16 +382,16 @@
},
{
"name": "guzzlehttp/psr7",
- "version": "2.4.1",
+ "version": "2.4.3",
"source": {
"type": "git",
"url": "https://github.com/guzzle/psr7.git",
- "reference": "69568e4293f4fa993f3b0e51c9723e1e17c41379"
+ "reference": "67c26b443f348a51926030c83481b85718457d3d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/guzzle/psr7/zipball/69568e4293f4fa993f3b0e51c9723e1e17c41379",
- "reference": "69568e4293f4fa993f3b0e51c9723e1e17c41379",
+ "url": "https://api.github.com/repos/guzzle/psr7/zipball/67c26b443f348a51926030c83481b85718457d3d",
+ "reference": "67c26b443f348a51926030c83481b85718457d3d",
"shasum": ""
},
"require": {
@@ -481,7 +481,7 @@
],
"support": {
"issues": "https://github.com/guzzle/psr7/issues",
- "source": "https://github.com/guzzle/psr7/tree/2.4.1"
+ "source": "https://github.com/guzzle/psr7/tree/2.4.3"
},
"funding": [
{
@@ -497,20 +497,20 @@
"type": "tidelift"
}
],
- "time": "2022-08-28T14:45:39+00:00"
+ "time": "2022-10-26T14:07:24+00:00"
},
{
"name": "illuminate/collections",
- "version": "v9.35.1",
+ "version": "v9.45.1",
"source": {
"type": "git",
"url": "https://github.com/illuminate/collections.git",
- "reference": "32e3cd051cf1d12c1e7d5f7bb5a52d0dae8b7a8b"
+ "reference": "7a8afa0875d7de162f30865d9fae33c8fb235fa2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/illuminate/collections/zipball/32e3cd051cf1d12c1e7d5f7bb5a52d0dae8b7a8b",
- "reference": "32e3cd051cf1d12c1e7d5f7bb5a52d0dae8b7a8b",
+ "url": "https://api.github.com/repos/illuminate/collections/zipball/7a8afa0875d7de162f30865d9fae33c8fb235fa2",
+ "reference": "7a8afa0875d7de162f30865d9fae33c8fb235fa2",
"shasum": ""
},
"require": {
@@ -552,11 +552,11 @@
"issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework"
},
- "time": "2022-10-06T14:13:23+00:00"
+ "time": "2022-12-02T18:48:05+00:00"
},
{
"name": "illuminate/conditionable",
- "version": "v9.35.1",
+ "version": "v9.45.1",
"source": {
"type": "git",
"url": "https://github.com/illuminate/conditionable.git",
@@ -602,16 +602,16 @@
},
{
"name": "illuminate/contracts",
- "version": "v9.35.1",
+ "version": "v9.45.1",
"source": {
"type": "git",
"url": "https://github.com/illuminate/contracts.git",
- "reference": "d57130115694b4f6a98d064bea31cdb09d7784f8"
+ "reference": "c7cc6e6198cac6dfdead111f9758de25413188b7"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/illuminate/contracts/zipball/d57130115694b4f6a98d064bea31cdb09d7784f8",
- "reference": "d57130115694b4f6a98d064bea31cdb09d7784f8",
+ "url": "https://api.github.com/repos/illuminate/contracts/zipball/c7cc6e6198cac6dfdead111f9758de25413188b7",
+ "reference": "c7cc6e6198cac6dfdead111f9758de25413188b7",
"shasum": ""
},
"require": {
@@ -646,20 +646,20 @@
"issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework"
},
- "time": "2022-09-15T13:31:42+00:00"
+ "time": "2022-10-31T22:25:40+00:00"
},
{
"name": "illuminate/filesystem",
- "version": "v9.35.1",
+ "version": "v9.45.1",
"source": {
"type": "git",
"url": "https://github.com/illuminate/filesystem.git",
- "reference": "9abf154ca06a6034487a0e8928e5a6b2cfea2763"
+ "reference": "9923cb717f5505b84200fb78feba1c2f2fe9fe83"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/illuminate/filesystem/zipball/9abf154ca06a6034487a0e8928e5a6b2cfea2763",
- "reference": "9abf154ca06a6034487a0e8928e5a6b2cfea2763",
+ "url": "https://api.github.com/repos/illuminate/filesystem/zipball/9923cb717f5505b84200fb78feba1c2f2fe9fe83",
+ "reference": "9923cb717f5505b84200fb78feba1c2f2fe9fe83",
"shasum": ""
},
"require": {
@@ -708,20 +708,20 @@
"issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework"
},
- "time": "2022-09-27T19:54:00+00:00"
+ "time": "2022-12-08T16:55:54+00:00"
},
{
"name": "illuminate/http",
- "version": "v9.35.1",
+ "version": "v9.45.1",
"source": {
"type": "git",
"url": "https://github.com/illuminate/http.git",
- "reference": "bb7a18a255b540f1d8742f42bb366deb5f37a25f"
+ "reference": "5a0284d6bff14a233c2280f0782be4b5bc6b03ab"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/illuminate/http/zipball/bb7a18a255b540f1d8742f42bb366deb5f37a25f",
- "reference": "bb7a18a255b540f1d8742f42bb366deb5f37a25f",
+ "url": "https://api.github.com/repos/illuminate/http/zipball/5a0284d6bff14a233c2280f0782be4b5bc6b03ab",
+ "reference": "5a0284d6bff14a233c2280f0782be4b5bc6b03ab",
"shasum": ""
},
"require": {
@@ -767,11 +767,11 @@
"issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework"
},
- "time": "2022-10-04T13:30:33+00:00"
+ "time": "2022-12-16T16:52:48+00:00"
},
{
"name": "illuminate/macroable",
- "version": "v9.35.1",
+ "version": "v9.45.1",
"source": {
"type": "git",
"url": "https://github.com/illuminate/macroable.git",
@@ -817,16 +817,16 @@
},
{
"name": "illuminate/session",
- "version": "v9.35.1",
+ "version": "v9.45.1",
"source": {
"type": "git",
"url": "https://github.com/illuminate/session.git",
- "reference": "f62b89cee04d93852365d606040790ce90701fdf"
+ "reference": "1e5d31bf7c6ed5844cedd4c36cf8251ec677309e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/illuminate/session/zipball/f62b89cee04d93852365d606040790ce90701fdf",
- "reference": "f62b89cee04d93852365d606040790ce90701fdf",
+ "url": "https://api.github.com/repos/illuminate/session/zipball/1e5d31bf7c6ed5844cedd4c36cf8251ec677309e",
+ "reference": "1e5d31bf7c6ed5844cedd4c36cf8251ec677309e",
"shasum": ""
},
"require": {
@@ -869,20 +869,20 @@
"issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework"
},
- "time": "2022-09-29T14:02:36+00:00"
+ "time": "2022-12-14T16:03:04+00:00"
},
{
"name": "illuminate/support",
- "version": "v9.35.1",
+ "version": "v9.45.1",
"source": {
"type": "git",
"url": "https://github.com/illuminate/support.git",
- "reference": "1ca5ac4d81a9c1ad976686283c4dde80dab29333"
+ "reference": "d7f7c07e35a2c09cbeeddc0168826cf05a2eeb84"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/illuminate/support/zipball/1ca5ac4d81a9c1ad976686283c4dde80dab29333",
- "reference": "1ca5ac4d81a9c1ad976686283c4dde80dab29333",
+ "url": "https://api.github.com/repos/illuminate/support/zipball/d7f7c07e35a2c09cbeeddc0168826cf05a2eeb84",
+ "reference": "d7f7c07e35a2c09cbeeddc0168826cf05a2eeb84",
"shasum": ""
},
"require": {
@@ -903,7 +903,7 @@
"suggest": {
"illuminate/filesystem": "Required to use the composer class (^9.0).",
"league/commonmark": "Required to use Str::markdown() and Stringable::markdown() (^2.0.2).",
- "ramsey/uuid": "Required to use Str::uuid() (^4.2.2).",
+ "ramsey/uuid": "Required to use Str::uuid() (^4.7).",
"symfony/process": "Required to use the composer class (^6.0).",
"symfony/uid": "Required to use Str::ulid() (^6.0).",
"symfony/var-dumper": "Required to use the dd function (^6.0).",
@@ -939,7 +939,7 @@
"issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework"
},
- "time": "2022-10-11T13:44:57+00:00"
+ "time": "2022-12-20T14:03:34+00:00"
},
{
"name": "laravel-zero/phar-updater",
@@ -1003,16 +1003,16 @@
},
{
"name": "nesbot/carbon",
- "version": "2.62.1",
+ "version": "2.64.0",
"source": {
"type": "git",
"url": "https://github.com/briannesbitt/Carbon.git",
- "reference": "01bc4cdefe98ef58d1f9cb31bdbbddddf2a88f7a"
+ "reference": "889546413c97de2d05063b8cb7b193c2531ea211"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/01bc4cdefe98ef58d1f9cb31bdbbddddf2a88f7a",
- "reference": "01bc4cdefe98ef58d1f9cb31bdbbddddf2a88f7a",
+ "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/889546413c97de2d05063b8cb7b193c2531ea211",
+ "reference": "889546413c97de2d05063b8cb7b193c2531ea211",
"shasum": ""
},
"require": {
@@ -1023,7 +1023,7 @@
"symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
},
"require-dev": {
- "doctrine/dbal": "^2.0 || ^3.0",
+ "doctrine/dbal": "^2.0 || ^3.1.4",
"doctrine/orm": "^2.7",
"friendsofphp/php-cs-fixer": "^3.0",
"kylekatarnls/multi-tester": "^2.0",
@@ -1101,20 +1101,20 @@
"type": "tidelift"
}
],
- "time": "2022-09-02T07:48:13+00:00"
+ "time": "2022-11-26T17:36:00+00:00"
},
{
"name": "nunomaduro/termwind",
- "version": "v1.14.0",
+ "version": "v1.15.0",
"source": {
"type": "git",
"url": "https://github.com/nunomaduro/termwind.git",
- "reference": "10065367baccf13b6e30f5e9246fa4f63a79eb1d"
+ "reference": "594ab862396c16ead000de0c3c38f4a5cbe1938d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/10065367baccf13b6e30f5e9246fa4f63a79eb1d",
- "reference": "10065367baccf13b6e30f5e9246fa4f63a79eb1d",
+ "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/594ab862396c16ead000de0c3c38f4a5cbe1938d",
+ "reference": "594ab862396c16ead000de0c3c38f4a5cbe1938d",
"shasum": ""
},
"require": {
@@ -1171,7 +1171,7 @@
],
"support": {
"issues": "https://github.com/nunomaduro/termwind/issues",
- "source": "https://github.com/nunomaduro/termwind/tree/v1.14.0"
+ "source": "https://github.com/nunomaduro/termwind/tree/v1.15.0"
},
"funding": [
{
@@ -1187,7 +1187,7 @@
"type": "github"
}
],
- "time": "2022-08-01T11:03:24+00:00"
+ "time": "2022-12-20T19:00:15+00:00"
},
{
"name": "psr/container",
@@ -1658,20 +1658,21 @@
"type": "github"
}
],
+ "abandoned": "spatie/laravel-data",
"time": "2022-09-16T13:34:38+00:00"
},
{
"name": "symfony/console",
- "version": "v6.0.14",
+ "version": "v6.0.16",
"source": {
"type": "git",
"url": "https://github.com/symfony/console.git",
- "reference": "1f89cab8d52c84424f798495b3f10342a7b1a070"
+ "reference": "be294423f337dda97c810733138c0caec1bb0575"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/console/zipball/1f89cab8d52c84424f798495b3f10342a7b1a070",
- "reference": "1f89cab8d52c84424f798495b3f10342a7b1a070",
+ "url": "https://api.github.com/repos/symfony/console/zipball/be294423f337dda97c810733138c0caec1bb0575",
+ "reference": "be294423f337dda97c810733138c0caec1bb0575",
"shasum": ""
},
"require": {
@@ -1737,7 +1738,7 @@
"terminal"
],
"support": {
- "source": "https://github.com/symfony/console/tree/v6.0.14"
+ "source": "https://github.com/symfony/console/tree/v6.0.16"
},
"funding": [
{
@@ -1753,7 +1754,7 @@
"type": "tidelift"
}
],
- "time": "2022-10-07T08:02:12+00:00"
+ "time": "2022-11-25T18:58:46+00:00"
},
{
"name": "symfony/deprecation-contracts",
@@ -1824,16 +1825,16 @@
},
{
"name": "symfony/error-handler",
- "version": "v6.0.14",
+ "version": "v6.0.15",
"source": {
"type": "git",
"url": "https://github.com/symfony/error-handler.git",
- "reference": "81e57c793d9a573f29f8b5296d5d8ee4602badcb"
+ "reference": "f000c166cb3ee32c4c822831a79260a135cd59b5"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/error-handler/zipball/81e57c793d9a573f29f8b5296d5d8ee4602badcb",
- "reference": "81e57c793d9a573f29f8b5296d5d8ee4602badcb",
+ "url": "https://api.github.com/repos/symfony/error-handler/zipball/f000c166cb3ee32c4c822831a79260a135cd59b5",
+ "reference": "f000c166cb3ee32c4c822831a79260a135cd59b5",
"shasum": ""
},
"require": {
@@ -1875,7 +1876,7 @@
"description": "Provides tools to manage errors and ease debugging PHP code",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/error-handler/tree/v6.0.14"
+ "source": "https://github.com/symfony/error-handler/tree/v6.0.15"
},
"funding": [
{
@@ -1891,7 +1892,7 @@
"type": "tidelift"
}
],
- "time": "2022-10-07T08:02:12+00:00"
+ "time": "2022-10-28T16:22:58+00:00"
},
{
"name": "symfony/event-dispatcher",
@@ -2118,16 +2119,16 @@
},
{
"name": "symfony/http-foundation",
- "version": "v6.0.14",
+ "version": "v6.0.16",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-foundation.git",
- "reference": "e8aa505d35660877e6695d68be53df2ceac7cf57"
+ "reference": "86eec2c66d00a2dd03d84352cd10b12df73101ec"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e8aa505d35660877e6695d68be53df2ceac7cf57",
- "reference": "e8aa505d35660877e6695d68be53df2ceac7cf57",
+ "url": "https://api.github.com/repos/symfony/http-foundation/zipball/86eec2c66d00a2dd03d84352cd10b12df73101ec",
+ "reference": "86eec2c66d00a2dd03d84352cd10b12df73101ec",
"shasum": ""
},
"require": {
@@ -2173,7 +2174,7 @@
"description": "Defines an object-oriented layer for the HTTP specification",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/http-foundation/tree/v6.0.14"
+ "source": "https://github.com/symfony/http-foundation/tree/v6.0.16"
},
"funding": [
{
@@ -2189,20 +2190,20 @@
"type": "tidelift"
}
],
- "time": "2022-10-02T08:16:40+00:00"
+ "time": "2022-11-07T08:07:05+00:00"
},
{
"name": "symfony/http-kernel",
- "version": "v6.0.14",
+ "version": "v6.0.16",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-kernel.git",
- "reference": "f9fc93c4f12e2fd7dea37f7b5840deb34e9037fc"
+ "reference": "8ba1344821807ad51f230f0d01e0fa8f366e4abb"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-kernel/zipball/f9fc93c4f12e2fd7dea37f7b5840deb34e9037fc",
- "reference": "f9fc93c4f12e2fd7dea37f7b5840deb34e9037fc",
+ "url": "https://api.github.com/repos/symfony/http-kernel/zipball/8ba1344821807ad51f230f0d01e0fa8f366e4abb",
+ "reference": "8ba1344821807ad51f230f0d01e0fa8f366e4abb",
"shasum": ""
},
"require": {
@@ -2282,7 +2283,7 @@
"description": "Provides a structured process for converting a Request into a Response",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/http-kernel/tree/v6.0.14"
+ "source": "https://github.com/symfony/http-kernel/tree/v6.0.16"
},
"funding": [
{
@@ -2298,20 +2299,20 @@
"type": "tidelift"
}
],
- "time": "2022-10-12T07:43:45+00:00"
+ "time": "2022-11-28T18:15:44+00:00"
},
{
"name": "symfony/mime",
- "version": "v6.0.14",
+ "version": "v6.0.16",
"source": {
"type": "git",
"url": "https://github.com/symfony/mime.git",
- "reference": "c01b88b63418131daf2edd0bdc17fc8a6d1c939a"
+ "reference": "ad9878bede5707cdf5ff7f5c86d82a921bbbfe1c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/mime/zipball/c01b88b63418131daf2edd0bdc17fc8a6d1c939a",
- "reference": "c01b88b63418131daf2edd0bdc17fc8a6d1c939a",
+ "url": "https://api.github.com/repos/symfony/mime/zipball/ad9878bede5707cdf5ff7f5c86d82a921bbbfe1c",
+ "reference": "ad9878bede5707cdf5ff7f5c86d82a921bbbfe1c",
"shasum": ""
},
"require": {
@@ -2364,7 +2365,7 @@
"mime-type"
],
"support": {
- "source": "https://github.com/symfony/mime/tree/v6.0.14"
+ "source": "https://github.com/symfony/mime/tree/v6.0.16"
},
"funding": [
{
@@ -2380,20 +2381,20 @@
"type": "tidelift"
}
],
- "time": "2022-10-07T08:02:12+00:00"
+ "time": "2022-11-28T12:25:56+00:00"
},
{
"name": "symfony/polyfill-ctype",
- "version": "v1.26.0",
+ "version": "v1.27.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-ctype.git",
- "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4"
+ "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
- "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
+ "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
+ "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
"shasum": ""
},
"require": {
@@ -2408,7 +2409,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "1.26-dev"
+ "dev-main": "1.27-dev"
},
"thanks": {
"name": "symfony/polyfill",
@@ -2446,7 +2447,7 @@
"portable"
],
"support": {
- "source": "https://github.com/symfony/polyfill-ctype/tree/v1.26.0"
+ "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
},
"funding": [
{
@@ -2462,20 +2463,20 @@
"type": "tidelift"
}
],
- "time": "2022-05-24T11:49:31+00:00"
+ "time": "2022-11-03T14:55:06+00:00"
},
{
"name": "symfony/polyfill-intl-grapheme",
- "version": "v1.26.0",
+ "version": "v1.27.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-intl-grapheme.git",
- "reference": "433d05519ce6990bf3530fba6957499d327395c2"
+ "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/433d05519ce6990bf3530fba6957499d327395c2",
- "reference": "433d05519ce6990bf3530fba6957499d327395c2",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
+ "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
"shasum": ""
},
"require": {
@@ -2487,7 +2488,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "1.26-dev"
+ "dev-main": "1.27-dev"
},
"thanks": {
"name": "symfony/polyfill",
@@ -2527,7 +2528,7 @@
"shim"
],
"support": {
- "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.26.0"
+ "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
},
"funding": [
{
@@ -2543,20 +2544,20 @@
"type": "tidelift"
}
],
- "time": "2022-05-24T11:49:31+00:00"
+ "time": "2022-11-03T14:55:06+00:00"
},
{
"name": "symfony/polyfill-intl-idn",
- "version": "v1.26.0",
+ "version": "v1.27.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-intl-idn.git",
- "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8"
+ "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
- "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
+ "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
"shasum": ""
},
"require": {
@@ -2570,7 +2571,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "1.26-dev"
+ "dev-main": "1.27-dev"
},
"thanks": {
"name": "symfony/polyfill",
@@ -2614,7 +2615,7 @@
"shim"
],
"support": {
- "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.26.0"
+ "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
},
"funding": [
{
@@ -2630,20 +2631,20 @@
"type": "tidelift"
}
],
- "time": "2022-05-24T11:49:31+00:00"
+ "time": "2022-11-03T14:55:06+00:00"
},
{
"name": "symfony/polyfill-intl-normalizer",
- "version": "v1.26.0",
+ "version": "v1.27.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-intl-normalizer.git",
- "reference": "219aa369ceff116e673852dce47c3a41794c14bd"
+ "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/219aa369ceff116e673852dce47c3a41794c14bd",
- "reference": "219aa369ceff116e673852dce47c3a41794c14bd",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
+ "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
"shasum": ""
},
"require": {
@@ -2655,7 +2656,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "1.26-dev"
+ "dev-main": "1.27-dev"
},
"thanks": {
"name": "symfony/polyfill",
@@ -2698,7 +2699,7 @@
"shim"
],
"support": {
- "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.26.0"
+ "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
},
"funding": [
{
@@ -2714,20 +2715,20 @@
"type": "tidelift"
}
],
- "time": "2022-05-24T11:49:31+00:00"
+ "time": "2022-11-03T14:55:06+00:00"
},
{
"name": "symfony/polyfill-mbstring",
- "version": "v1.26.0",
+ "version": "v1.27.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-mbstring.git",
- "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
+ "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
- "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
+ "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
+ "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
"shasum": ""
},
"require": {
@@ -2742,7 +2743,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "1.26-dev"
+ "dev-main": "1.27-dev"
},
"thanks": {
"name": "symfony/polyfill",
@@ -2781,7 +2782,7 @@
"shim"
],
"support": {
- "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0"
+ "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
},
"funding": [
{
@@ -2797,20 +2798,20 @@
"type": "tidelift"
}
],
- "time": "2022-05-24T11:49:31+00:00"
+ "time": "2022-11-03T14:55:06+00:00"
},
{
"name": "symfony/polyfill-php72",
- "version": "v1.26.0",
+ "version": "v1.27.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-php72.git",
- "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2"
+ "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/bf44a9fd41feaac72b074de600314a93e2ae78e2",
- "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2",
+ "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
+ "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
"shasum": ""
},
"require": {
@@ -2819,7 +2820,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "1.26-dev"
+ "dev-main": "1.27-dev"
},
"thanks": {
"name": "symfony/polyfill",
@@ -2857,7 +2858,7 @@
"shim"
],
"support": {
- "source": "https://github.com/symfony/polyfill-php72/tree/v1.26.0"
+ "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
},
"funding": [
{
@@ -2873,20 +2874,20 @@
"type": "tidelift"
}
],
- "time": "2022-05-24T11:49:31+00:00"
+ "time": "2022-11-03T14:55:06+00:00"
},
{
"name": "symfony/polyfill-php80",
- "version": "v1.26.0",
+ "version": "v1.27.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-php80.git",
- "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace"
+ "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace",
- "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace",
+ "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
+ "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
"shasum": ""
},
"require": {
@@ -2895,7 +2896,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "1.26-dev"
+ "dev-main": "1.27-dev"
},
"thanks": {
"name": "symfony/polyfill",
@@ -2940,7 +2941,7 @@
"shim"
],
"support": {
- "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0"
+ "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
},
"funding": [
{
@@ -2956,7 +2957,7 @@
"type": "tidelift"
}
],
- "time": "2022-05-10T07:21:04+00:00"
+ "time": "2022-11-03T14:55:06+00:00"
},
{
"name": "symfony/service-contracts",
@@ -3042,16 +3043,16 @@
},
{
"name": "symfony/string",
- "version": "v6.0.14",
+ "version": "v6.0.15",
"source": {
"type": "git",
"url": "https://github.com/symfony/string.git",
- "reference": "3db7da820a6e4a584b714b3933c34c6a7db4d86c"
+ "reference": "51ac0fa0ccf132a00519b87c97e8f775fa14e771"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/string/zipball/3db7da820a6e4a584b714b3933c34c6a7db4d86c",
- "reference": "3db7da820a6e4a584b714b3933c34c6a7db4d86c",
+ "url": "https://api.github.com/repos/symfony/string/zipball/51ac0fa0ccf132a00519b87c97e8f775fa14e771",
+ "reference": "51ac0fa0ccf132a00519b87c97e8f775fa14e771",
"shasum": ""
},
"require": {
@@ -3107,7 +3108,7 @@
"utf8"
],
"support": {
- "source": "https://github.com/symfony/string/tree/v6.0.14"
+ "source": "https://github.com/symfony/string/tree/v6.0.15"
},
"funding": [
{
@@ -3651,35 +3652,35 @@
},
{
"name": "ergebnis/composer-normalize",
- "version": "2.28.3",
+ "version": "2.29.0",
"source": {
"type": "git",
"url": "https://github.com/ergebnis/composer-normalize.git",
- "reference": "ec75a2bf751f6fec165e9ea0262655b8ca397e5c"
+ "reference": "fad0e99b16c625817a5bfd910e4d7e31999c53b2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ergebnis/composer-normalize/zipball/ec75a2bf751f6fec165e9ea0262655b8ca397e5c",
- "reference": "ec75a2bf751f6fec165e9ea0262655b8ca397e5c",
+ "url": "https://api.github.com/repos/ergebnis/composer-normalize/zipball/fad0e99b16c625817a5bfd910e4d7e31999c53b2",
+ "reference": "fad0e99b16c625817a5bfd910e4d7e31999c53b2",
"shasum": ""
},
"require": {
"composer-plugin-api": "^2.0.0",
"ergebnis/json-normalizer": "~2.1.0",
- "ergebnis/json-printer": "^3.2.0",
+ "ergebnis/json-printer": "^3.3.0",
"justinrainbow/json-schema": "^5.2.12",
"localheinz/diff": "^1.1.1",
- "php": "^7.4 || ^8.0"
+ "php": "^8.0"
},
"require-dev": {
- "composer/composer": "^2.3.9",
- "ergebnis/license": "^1.2.0",
- "ergebnis/php-cs-fixer-config": "^4.4.0",
- "fakerphp/faker": "^1.19.0",
- "phpunit/phpunit": "^9.5.21",
- "psalm/plugin-phpunit": "~0.17.0",
- "symfony/filesystem": "^5.4.9",
- "vimeo/psalm": "^4.24.0"
+ "composer/composer": "^2.4.4",
+ "ergebnis/license": "^2.1.0",
+ "ergebnis/php-cs-fixer-config": "^5.0.0",
+ "fakerphp/faker": "^1.20.0",
+ "phpunit/phpunit": "^9.5.26",
+ "psalm/plugin-phpunit": "~0.18.3",
+ "symfony/filesystem": "^6.0.13",
+ "vimeo/psalm": "^5.0.0"
},
"type": "composer-plugin",
"extra": {
@@ -3716,7 +3717,7 @@
"issues": "https://github.com/ergebnis/composer-normalize/issues",
"source": "https://github.com/ergebnis/composer-normalize"
},
- "time": "2022-07-05T16:09:10+00:00"
+ "time": "2022-12-01T11:51:19+00:00"
},
{
"name": "ergebnis/json-normalizer",
@@ -3785,31 +3786,31 @@
},
{
"name": "ergebnis/json-printer",
- "version": "3.2.0",
+ "version": "3.3.0",
"source": {
"type": "git",
"url": "https://github.com/ergebnis/json-printer.git",
- "reference": "651cab2b7604a6b338d0d16749f5ea0851a68005"
+ "reference": "18920367473b099633f644f0ca6dc8794345148f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ergebnis/json-printer/zipball/651cab2b7604a6b338d0d16749f5ea0851a68005",
- "reference": "651cab2b7604a6b338d0d16749f5ea0851a68005",
+ "url": "https://api.github.com/repos/ergebnis/json-printer/zipball/18920367473b099633f644f0ca6dc8794345148f",
+ "reference": "18920367473b099633f644f0ca6dc8794345148f",
"shasum": ""
},
"require": {
"ext-json": "*",
"ext-mbstring": "*",
- "php": "^7.4 || ^8.0"
+ "php": "^8.0"
},
"require-dev": {
- "ergebnis/license": "^1.1.0",
- "ergebnis/php-cs-fixer-config": "^3.4.0",
- "fakerphp/faker": "^1.17.0",
- "infection/infection": "~0.25.5",
- "phpunit/phpunit": "^9.5.11",
- "psalm/plugin-phpunit": "~0.16.1",
- "vimeo/psalm": "^4.16.1"
+ "ergebnis/license": "^2.0.0",
+ "ergebnis/php-cs-fixer-config": "^4.11.0",
+ "fakerphp/faker": "^1.20.0",
+ "infection/infection": "~0.26.6",
+ "phpunit/phpunit": "^9.5.26",
+ "psalm/plugin-phpunit": "~0.18.3",
+ "vimeo/psalm": "^4.30.0"
},
"type": "library",
"autoload": {
@@ -3838,13 +3839,7 @@
"issues": "https://github.com/ergebnis/json-printer/issues",
"source": "https://github.com/ergebnis/json-printer"
},
- "funding": [
- {
- "url": "https://github.com/localheinz",
- "type": "github"
- }
- ],
- "time": "2021-12-27T12:39:13+00:00"
+ "time": "2022-11-28T10:27:43+00:00"
},
{
"name": "ergebnis/json-schema-validator",
@@ -3919,16 +3914,16 @@
},
{
"name": "filp/whoops",
- "version": "2.14.5",
+ "version": "2.14.6",
"source": {
"type": "git",
"url": "https://github.com/filp/whoops.git",
- "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc"
+ "reference": "f7948baaa0330277c729714910336383286305da"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/filp/whoops/zipball/a63e5e8f26ebbebf8ed3c5c691637325512eb0dc",
- "reference": "a63e5e8f26ebbebf8ed3c5c691637325512eb0dc",
+ "url": "https://api.github.com/repos/filp/whoops/zipball/f7948baaa0330277c729714910336383286305da",
+ "reference": "f7948baaa0330277c729714910336383286305da",
"shasum": ""
},
"require": {
@@ -3978,7 +3973,7 @@
],
"support": {
"issues": "https://github.com/filp/whoops/issues",
- "source": "https://github.com/filp/whoops/tree/2.14.5"
+ "source": "https://github.com/filp/whoops/tree/2.14.6"
},
"funding": [
{
@@ -3986,7 +3981,7 @@
"type": "github"
}
],
- "time": "2022-01-07T12:00:00+00:00"
+ "time": "2022-11-02T16:23:29+00:00"
},
{
"name": "graham-campbell/result-type",
@@ -4103,16 +4098,16 @@
},
{
"name": "illuminate/bus",
- "version": "v9.35.1",
+ "version": "v9.45.1",
"source": {
"type": "git",
"url": "https://github.com/illuminate/bus.git",
- "reference": "baccdba32ec4e7d3492cfd991806a8ead397f77f"
+ "reference": "c7f09872054f2b361f8ed9e9e988b3c9be06c596"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/illuminate/bus/zipball/baccdba32ec4e7d3492cfd991806a8ead397f77f",
- "reference": "baccdba32ec4e7d3492cfd991806a8ead397f77f",
+ "url": "https://api.github.com/repos/illuminate/bus/zipball/c7f09872054f2b361f8ed9e9e988b3c9be06c596",
+ "reference": "c7f09872054f2b361f8ed9e9e988b3c9be06c596",
"shasum": ""
},
"require": {
@@ -4152,20 +4147,20 @@
"issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework"
},
- "time": "2022-09-16T19:09:47+00:00"
+ "time": "2022-11-25T07:56:47+00:00"
},
{
"name": "illuminate/cache",
- "version": "v9.35.1",
+ "version": "v9.45.1",
"source": {
"type": "git",
"url": "https://github.com/illuminate/cache.git",
- "reference": "8ba188bcfad7d2b5ed13f8cd1ccbb67db22cfa04"
+ "reference": "c29ed1ddb5348da7bed65be9205666619e8eab8e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/illuminate/cache/zipball/8ba188bcfad7d2b5ed13f8cd1ccbb67db22cfa04",
- "reference": "8ba188bcfad7d2b5ed13f8cd1ccbb67db22cfa04",
+ "url": "https://api.github.com/repos/illuminate/cache/zipball/c29ed1ddb5348da7bed65be9205666619e8eab8e",
+ "reference": "c29ed1ddb5348da7bed65be9205666619e8eab8e",
"shasum": ""
},
"require": {
@@ -4212,11 +4207,11 @@
"issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework"
},
- "time": "2022-08-24T13:50:51+00:00"
+ "time": "2022-12-06T23:25:55+00:00"
},
{
"name": "illuminate/config",
- "version": "v9.35.1",
+ "version": "v9.45.1",
"source": {
"type": "git",
"url": "https://github.com/illuminate/config.git",
@@ -4264,16 +4259,16 @@
},
{
"name": "illuminate/console",
- "version": "v9.35.1",
+ "version": "v9.45.1",
"source": {
"type": "git",
"url": "https://github.com/illuminate/console.git",
- "reference": "494db80923e6d47fb0bb9ab8bad4fe563872dd8e"
+ "reference": "152e203af3dc19350b335c633d6b5c0cd06c40fa"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/illuminate/console/zipball/494db80923e6d47fb0bb9ab8bad4fe563872dd8e",
- "reference": "494db80923e6d47fb0bb9ab8bad4fe563872dd8e",
+ "url": "https://api.github.com/repos/illuminate/console/zipball/152e203af3dc19350b335c633d6b5c0cd06c40fa",
+ "reference": "152e203af3dc19350b335c633d6b5c0cd06c40fa",
"shasum": ""
},
"require": {
@@ -4322,11 +4317,11 @@
"issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework"
},
- "time": "2022-10-04T13:30:33+00:00"
+ "time": "2022-12-16T16:52:48+00:00"
},
{
"name": "illuminate/container",
- "version": "v9.35.1",
+ "version": "v9.45.1",
"source": {
"type": "git",
"url": "https://github.com/illuminate/container.git",
@@ -4377,7 +4372,7 @@
},
{
"name": "illuminate/events",
- "version": "v9.35.1",
+ "version": "v9.45.1",
"source": {
"type": "git",
"url": "https://github.com/illuminate/events.git",
@@ -4432,7 +4427,7 @@
},
{
"name": "illuminate/pipeline",
- "version": "v9.35.1",
+ "version": "v9.45.1",
"source": {
"type": "git",
"url": "https://github.com/illuminate/pipeline.git",
@@ -4480,16 +4475,16 @@
},
{
"name": "illuminate/testing",
- "version": "v9.35.1",
+ "version": "v9.45.1",
"source": {
"type": "git",
"url": "https://github.com/illuminate/testing.git",
- "reference": "4564c3528f92117046039cf37ffc529a6a3391df"
+ "reference": "7498d121a0491881e647189666e6a44dafc9a08f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/illuminate/testing/zipball/4564c3528f92117046039cf37ffc529a6a3391df",
- "reference": "4564c3528f92117046039cf37ffc529a6a3391df",
+ "url": "https://api.github.com/repos/illuminate/testing/zipball/7498d121a0491881e647189666e6a44dafc9a08f",
+ "reference": "7498d121a0491881e647189666e6a44dafc9a08f",
"shasum": ""
},
"require": {
@@ -4534,20 +4529,20 @@
"issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework"
},
- "time": "2022-10-04T16:43:55+00:00"
+ "time": "2022-12-19T10:26:22+00:00"
},
{
"name": "illuminate/view",
- "version": "v9.35.1",
+ "version": "v9.45.1",
"source": {
"type": "git",
"url": "https://github.com/illuminate/view.git",
- "reference": "93c15a470af8a5ffb006d201a1b74d01fe4ae8e8"
+ "reference": "ceb08678d07b1d6092f3ef1d9154db5d4f155eb4"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/illuminate/view/zipball/93c15a470af8a5ffb006d201a1b74d01fe4ae8e8",
- "reference": "93c15a470af8a5ffb006d201a1b74d01fe4ae8e8",
+ "url": "https://api.github.com/repos/illuminate/view/zipball/ceb08678d07b1d6092f3ef1d9154db5d4f155eb4",
+ "reference": "ceb08678d07b1d6092f3ef1d9154db5d4f155eb4",
"shasum": ""
},
"require": {
@@ -4588,7 +4583,7 @@
"issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework"
},
- "time": "2022-10-10T15:25:48+00:00"
+ "time": "2022-12-16T19:07:05+00:00"
},
{
"name": "jolicode/jolinotif",
@@ -4869,16 +4864,16 @@
},
{
"name": "league/flysystem",
- "version": "3.7.0",
+ "version": "3.12.0",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/flysystem.git",
- "reference": "0deb0ff21094cbd37b13cbda085c076312708e6c"
+ "reference": "2aef65a47e44f2d6f9938f720f6dd697e7ba7b76"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/0deb0ff21094cbd37b13cbda085c076312708e6c",
- "reference": "0deb0ff21094cbd37b13cbda085c076312708e6c",
+ "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/2aef65a47e44f2d6f9938f720f6dd697e7ba7b76",
+ "reference": "2aef65a47e44f2d6f9938f720f6dd697e7ba7b76",
"shasum": ""
},
"require": {
@@ -4894,7 +4889,7 @@
},
"require-dev": {
"async-aws/s3": "^1.5",
- "async-aws/simple-s3": "^1.0",
+ "async-aws/simple-s3": "^1.1",
"aws/aws-sdk-php": "^3.198.1",
"composer/semver": "^3.0",
"ext-fileinfo": "*",
@@ -4940,7 +4935,7 @@
],
"support": {
"issues": "https://github.com/thephpleague/flysystem/issues",
- "source": "https://github.com/thephpleague/flysystem/tree/3.7.0"
+ "source": "https://github.com/thephpleague/flysystem/tree/3.12.0"
},
"funding": [
{
@@ -4956,7 +4951,7 @@
"type": "tidelift"
}
],
- "time": "2022-10-17T07:23:36+00:00"
+ "time": "2022-12-20T20:21:10+00:00"
},
{
"name": "league/mime-type-detection",
@@ -5207,16 +5202,16 @@
},
{
"name": "nikic/php-parser",
- "version": "v4.15.1",
+ "version": "v4.15.2",
"source": {
"type": "git",
"url": "https://github.com/nikic/PHP-Parser.git",
- "reference": "0ef6c55a3f47f89d7a374e6f835197a0b5fcf900"
+ "reference": "f59bbe44bf7d96f24f3e2b4ddc21cd52c1d2adbc"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/0ef6c55a3f47f89d7a374e6f835197a0b5fcf900",
- "reference": "0ef6c55a3f47f89d7a374e6f835197a0b5fcf900",
+ "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/f59bbe44bf7d96f24f3e2b4ddc21cd52c1d2adbc",
+ "reference": "f59bbe44bf7d96f24f3e2b4ddc21cd52c1d2adbc",
"shasum": ""
},
"require": {
@@ -5257,22 +5252,22 @@
],
"support": {
"issues": "https://github.com/nikic/PHP-Parser/issues",
- "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.1"
+ "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.2"
},
- "time": "2022-09-04T07:30:47+00:00"
+ "time": "2022-11-12T15:38:23+00:00"
},
{
"name": "nunomaduro/collision",
- "version": "v6.3.1",
+ "version": "v6.3.2",
"source": {
"type": "git",
"url": "https://github.com/nunomaduro/collision.git",
- "reference": "0f6349c3ed5dd28467087b08fb59384bb458a22b"
+ "reference": "83699b231e7f277bfa2e823788973bf4082f019a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nunomaduro/collision/zipball/0f6349c3ed5dd28467087b08fb59384bb458a22b",
- "reference": "0f6349c3ed5dd28467087b08fb59384bb458a22b",
+ "url": "https://api.github.com/repos/nunomaduro/collision/zipball/83699b231e7f277bfa2e823788973bf4082f019a",
+ "reference": "83699b231e7f277bfa2e823788973bf4082f019a",
"shasum": ""
},
"require": {
@@ -5347,7 +5342,7 @@
"type": "patreon"
}
],
- "time": "2022-09-29T12:29:49+00:00"
+ "time": "2022-12-23T21:36:49+00:00"
},
{
"name": "nunomaduro/laravel-console-summary",
@@ -5542,30 +5537,30 @@
},
{
"name": "pestphp/pest",
- "version": "v1.22.1",
+ "version": "v1.22.3",
"source": {
"type": "git",
"url": "https://github.com/pestphp/pest.git",
- "reference": "af6240b4eed8b049ac43c91184141ee337305df7"
+ "reference": "b58a020423e9ad16c8bb8781927d516adae00da4"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/pestphp/pest/zipball/af6240b4eed8b049ac43c91184141ee337305df7",
- "reference": "af6240b4eed8b049ac43c91184141ee337305df7",
+ "url": "https://api.github.com/repos/pestphp/pest/zipball/b58a020423e9ad16c8bb8781927d516adae00da4",
+ "reference": "b58a020423e9ad16c8bb8781927d516adae00da4",
"shasum": ""
},
"require": {
- "nunomaduro/collision": "^5.10.0|^6.0",
- "pestphp/pest-plugin": "^1.0.0",
+ "nunomaduro/collision": "^5.11.0|^6.3.0",
+ "pestphp/pest-plugin": "^1.1.0",
"php": "^7.3 || ^8.0",
- "phpunit/phpunit": "^9.5.5"
+ "phpunit/phpunit": "^9.5.26"
},
"require-dev": {
- "illuminate/console": "^8.47.0",
- "illuminate/support": "^8.47.0",
- "laravel/dusk": "^6.15.0",
- "pestphp/pest-dev-tools": "dev-master",
- "pestphp/pest-plugin-parallel": "^1.0"
+ "illuminate/console": "^8.83.26",
+ "illuminate/support": "^8.83.26",
+ "laravel/dusk": "^6.25.2",
+ "pestphp/pest-dev-tools": "^1.0.0",
+ "pestphp/pest-plugin-parallel": "^1.2"
},
"bin": [
"bin/pest"
@@ -5619,7 +5614,7 @@
],
"support": {
"issues": "https://github.com/pestphp/pest/issues",
- "source": "https://github.com/pestphp/pest/tree/v1.22.1"
+ "source": "https://github.com/pestphp/pest/tree/v1.22.3"
},
"funding": [
{
@@ -5634,10 +5629,6 @@
"url": "https://github.com/nunomaduro",
"type": "github"
},
- {
- "url": "https://github.com/octoper",
- "type": "github"
- },
{
"url": "https://github.com/olivernybroe",
"type": "github"
@@ -5651,7 +5642,7 @@
"type": "patreon"
}
],
- "time": "2022-08-29T10:42:13+00:00"
+ "time": "2022-12-07T14:31:55+00:00"
},
{
"name": "pestphp/pest-plugin",
@@ -5913,16 +5904,16 @@
},
{
"name": "phpunit/php-code-coverage",
- "version": "9.2.17",
+ "version": "9.2.22",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/php-code-coverage.git",
- "reference": "aa94dc41e8661fe90c7316849907cba3007b10d8"
+ "reference": "e4bf60d2220b4baaa0572986b5d69870226b06df"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/aa94dc41e8661fe90c7316849907cba3007b10d8",
- "reference": "aa94dc41e8661fe90c7316849907cba3007b10d8",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/e4bf60d2220b4baaa0572986b5d69870226b06df",
+ "reference": "e4bf60d2220b4baaa0572986b5d69870226b06df",
"shasum": ""
},
"require": {
@@ -5978,7 +5969,7 @@
],
"support": {
"issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
- "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.17"
+ "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.22"
},
"funding": [
{
@@ -5986,7 +5977,7 @@
"type": "github"
}
],
- "time": "2022-08-30T12:24:04+00:00"
+ "time": "2022-12-18T16:40:55+00:00"
},
{
"name": "phpunit/php-file-iterator",
@@ -6231,16 +6222,16 @@
},
{
"name": "phpunit/phpunit",
- "version": "9.5.25",
+ "version": "9.5.27",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/phpunit.git",
- "reference": "3e6f90ca7e3d02025b1d147bd8d4a89fd4ca8a1d"
+ "reference": "a2bc7ffdca99f92d959b3f2270529334030bba38"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/3e6f90ca7e3d02025b1d147bd8d4a89fd4ca8a1d",
- "reference": "3e6f90ca7e3d02025b1d147bd8d4a89fd4ca8a1d",
+ "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a2bc7ffdca99f92d959b3f2270529334030bba38",
+ "reference": "a2bc7ffdca99f92d959b3f2270529334030bba38",
"shasum": ""
},
"require": {
@@ -6313,7 +6304,7 @@
],
"support": {
"issues": "https://github.com/sebastianbergmann/phpunit/issues",
- "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.25"
+ "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.27"
},
"funding": [
{
@@ -6329,7 +6320,7 @@
"type": "tidelift"
}
],
- "time": "2022-09-25T03:44:45+00:00"
+ "time": "2022-12-09T07:31:23+00:00"
},
{
"name": "ramsey/collection",
@@ -6412,24 +6403,23 @@
},
{
"name": "ramsey/uuid",
- "version": "4.5.1",
+ "version": "4.7.0",
"source": {
"type": "git",
"url": "https://github.com/ramsey/uuid.git",
- "reference": "a161a26d917604dc6d3aa25100fddf2556e9f35d"
+ "reference": "5ed9ad582647bbc3864ef78db34bdc1afdcf9b49"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ramsey/uuid/zipball/a161a26d917604dc6d3aa25100fddf2556e9f35d",
- "reference": "a161a26d917604dc6d3aa25100fddf2556e9f35d",
+ "url": "https://api.github.com/repos/ramsey/uuid/zipball/5ed9ad582647bbc3864ef78db34bdc1afdcf9b49",
+ "reference": "5ed9ad582647bbc3864ef78db34bdc1afdcf9b49",
"shasum": ""
},
"require": {
"brick/math": "^0.8.8 || ^0.9 || ^0.10",
- "ext-ctype": "*",
"ext-json": "*",
"php": "^8.0",
- "ramsey/collection": "^1.0"
+ "ramsey/collection": "^1.2"
},
"replace": {
"rhumsaa/uuid": "self.version"
@@ -6458,7 +6448,6 @@
},
"suggest": {
"ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
- "ext-ctype": "Enables faster processing of character classification using ctype functions.",
"ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
"ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
"paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
@@ -6490,7 +6479,7 @@
],
"support": {
"issues": "https://github.com/ramsey/uuid/issues",
- "source": "https://github.com/ramsey/uuid/tree/4.5.1"
+ "source": "https://github.com/ramsey/uuid/tree/4.7.0"
},
"funding": [
{
@@ -6502,7 +6491,7 @@
"type": "tidelift"
}
],
- "time": "2022-09-16T03:22:46+00:00"
+ "time": "2022-12-19T22:30:49+00:00"
},
{
"name": "roave/security-advisories",
@@ -6510,12 +6499,12 @@
"source": {
"type": "git",
"url": "https://github.com/Roave/SecurityAdvisories.git",
- "reference": "1d3484a08d3875e28bc2ad66697b0947cd6a2d99"
+ "reference": "57a3ee3eb79b9538f3012e6b66c04cdac0b551d1"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/1d3484a08d3875e28bc2ad66697b0947cd6a2d99",
- "reference": "1d3484a08d3875e28bc2ad66697b0947cd6a2d99",
+ "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/57a3ee3eb79b9538f3012e6b66c04cdac0b551d1",
+ "reference": "57a3ee3eb79b9538f3012e6b66c04cdac0b551d1",
"shasum": ""
},
"conflict": {
@@ -6524,6 +6513,7 @@
"adodb/adodb-php": "<=5.20.20|>=5.21,<=5.21.3",
"aheinze/cockpit": "<=2.2.1",
"akaunting/akaunting": "<2.1.13",
+ "akeneo/pim-community-dev": "<5.0.119|>=6,<6.0.53",
"alextselegidis/easyappointments": "<=1.4.3",
"alterphp/easyadmin-extension-bundle": ">=1.2,<1.2.11|>=1.3,<1.3.1",
"amazing/media2click": ">=1,<1.3.3",
@@ -6532,17 +6522,20 @@
"amphp/http-client": ">=4,<4.4",
"anchorcms/anchor-cms": "<=0.12.7",
"andreapollastri/cipi": "<=3.1.15",
+ "apereo/phpcas": "<1.6",
"api-platform/core": ">=2.2,<2.2.10|>=2.3,<2.3.6",
"appwrite/server-ce": "<0.11.1|>=0.12,<0.12.2",
"area17/twill": "<1.2.5|>=2,<2.5.3",
"asymmetricrypt/asymmetricrypt": ">=0,<9.9.99",
"awesome-support/awesome-support": "<=6.0.7",
"aws/aws-sdk-php": ">=3,<3.2.1",
+ "backdrop/backdrop": "<=1.23",
+ "badaso/core": "<2.7",
"bagisto/bagisto": "<0.1.5",
"barrelstrength/sprout-base-email": "<1.2.7",
"barrelstrength/sprout-forms": "<3.9",
"barryvdh/laravel-translation-manager": "<0.6.2",
- "baserproject/basercms": "<4.5.4",
+ "baserproject/basercms": "<4.7.2",
"billz/raspap-webgui": "<=2.6.6",
"bk2k/bootstrap-package": ">=7.1,<7.1.2|>=8,<8.0.8|>=9,<9.0.4|>=9.1,<9.1.3|>=10,<10.0.10|>=11,<11.0.3",
"bmarshall511/wordpress_zero_spam": "<5.2.13",
@@ -6562,15 +6555,15 @@
"cart2quote/module-quotation": ">=4.1.6,<=4.4.5|>=5,<5.4.4",
"cartalyst/sentry": "<=2.1.6",
"catfan/medoo": "<1.7.5",
- "centreon/centreon": "<21.4.16|>=21.10,<21.10.8|>=22,<22.4.1",
+ "centreon/centreon": "<22.10-beta.1",
"cesnet/simplesamlphp-module-proxystatistics": "<3.1",
"codeception/codeception": "<3.1.3|>=4,<4.1.22",
"codeigniter/framework": "<=3.0.6",
- "codeigniter4/framework": "<4.2.7",
+ "codeigniter4/framework": "<4.2.11",
"codeigniter4/shield": "= 1.0.0-beta",
"codiad/codiad": "<=2.8.4",
"composer/composer": "<1.10.26|>=2-alpha.1,<2.2.12|>=2.3,<2.3.5",
- "concrete5/concrete5": "<9",
+ "concrete5/concrete5": "<=9.1.3|>= 9.0.0RC1, < 9.1.3",
"concrete5/core": "<8.5.8|>=9,<9.1",
"contao-components/mediaelement": ">=2.14.2,<2.21.1",
"contao/contao": ">=4,<4.4.56|>=4.5,<4.9.18|>=4.10,<4.11.7|>=4.13,<4.13.3",
@@ -6596,7 +6589,7 @@
"doctrine/mongodb-odm": ">=1,<1.0.2",
"doctrine/mongodb-odm-bundle": ">=2,<3.0.1",
"doctrine/orm": ">=2,<2.4.8|>=2.5,<2.5.1|>=2.8.3,<2.8.4",
- "dolibarr/dolibarr": "<16|= 12.0.5|>= 3.3.beta1, < 13.0.2",
+ "dolibarr/dolibarr": "<16|>=16.0.1,<16.0.3|= 12.0.5|>= 3.3.beta1, < 13.0.2",
"dompdf/dompdf": "<2.0.1",
"drupal/core": ">=7,<7.91|>=8,<9.3.19|>=9.4,<9.4.3",
"drupal/drupal": ">=7,<7.80|>=8,<8.9.16|>=9,<9.1.12|>=9.2,<9.2.4",
@@ -6616,25 +6609,26 @@
"ezsystems/ezdemo-ls-extension": ">=5.4,<5.4.2.1",
"ezsystems/ezfind-ls": ">=5.3,<5.3.6.1|>=5.4,<5.4.11.1|>=2017.12,<2017.12.0.1",
"ezsystems/ezplatform": "<=1.13.6|>=2,<=2.5.24",
- "ezsystems/ezplatform-admin-ui": ">=1.3,<1.3.5|>=1.4,<1.4.6|>=1.5,<1.5.27",
+ "ezsystems/ezplatform-admin-ui": ">=1.3,<1.3.5|>=1.4,<1.4.6|>=1.5,<1.5.29|>=2.3,<2.3.26",
"ezsystems/ezplatform-admin-ui-assets": ">=4,<4.2.1|>=5,<5.0.1|>=5.1,<5.1.1",
- "ezsystems/ezplatform-kernel": "<=1.2.5|>=1.3,<1.3.19",
+ "ezsystems/ezplatform-graphql": ">=1-rc.1,<1.0.13|>=2-beta.1,<2.3.12",
+ "ezsystems/ezplatform-kernel": "<=1.2.5|>=1.3,<1.3.26",
"ezsystems/ezplatform-rest": ">=1.2,<=1.2.2|>=1.3,<1.3.8",
"ezsystems/ezplatform-richtext": ">=2.3,<=2.3.7",
"ezsystems/ezplatform-user": ">=1,<1.0.1",
- "ezsystems/ezpublish-kernel": "<=6.13.8.1|>=7,<7.5.29",
+ "ezsystems/ezpublish-kernel": "<=6.13.8.1|>=7,<7.5.30",
"ezsystems/ezpublish-legacy": "<=2017.12.7.3|>=2018.6,<=2019.3.5.1",
"ezsystems/platform-ui-assets-bundle": ">=4.2,<4.2.3",
- "ezsystems/repository-forms": ">=2.3,<2.3.2.1",
+ "ezsystems/repository-forms": ">=2.3,<2.3.2.1|>=2.5,<2.5.15",
"ezyang/htmlpurifier": "<4.1.1",
"facade/ignition": "<1.16.15|>=2,<2.4.2|>=2.5,<2.5.2",
"facturascripts/facturascripts": "<=2022.8",
"feehi/cms": "<=2.1.1",
- "feehi/feehicms": "<=2.0.1.1",
+ "feehi/feehicms": "<=2.1.1",
"fenom/fenom": "<=2.12.1",
"filegator/filegator": "<7.8",
"firebase/php-jwt": "<2",
- "flarum/core": ">=1,<=1.0.1",
+ "flarum/core": ">=1,<=1.0.1|>=1.5,<1.6.2",
"flarum/sticky": ">=0.1-beta.14,<=0.1-beta.15",
"flarum/tags": "<=0.1-beta.13",
"fluidtypo3/vhs": "<5.1.1",
@@ -6649,12 +6643,12 @@
"friendsofsymfony/user-bundle": ">=1.2,<1.3.5",
"friendsoftypo3/mediace": ">=7.6.2,<7.6.5",
"froala/wysiwyg-editor": "<3.2.7",
- "froxlor/froxlor": "<0.10.38",
+ "froxlor/froxlor": "<0.10.39",
"fuel/core": "<1.8.1",
"gaoming13/wechat-php-sdk": "<=1.10.2",
"genix/cms": "<=1.1.11",
"getgrav/grav": "<1.7.34",
- "getkirby/cms": "<3.5.8.1|>=3.6,<3.6.6.1|>=3.7,<3.7.4",
+ "getkirby/cms": "= 3.8.0|<3.5.8.2|>=3.6,<3.6.6.2|>=3.7,<3.7.5.1",
"getkirby/panel": "<2.5.14",
"getkirby/starterkit": "<=3.7.0.2",
"gilacms/gila": "<=1.11.4",
@@ -6671,7 +6665,9 @@
"hjue/justwriting": "<=1",
"hov/jobfair": "<1.0.13|>=2,<2.0.2",
"hyn/multi-tenant": ">=5.6,<5.7.2",
- "ibexa/core": ">=4,<4.0.7|>=4.1,<4.1.4",
+ "ibexa/admin-ui": ">=4.2,<4.2.3",
+ "ibexa/core": ">=4,<4.0.7|>=4.1,<4.1.4|>=4.2,<4.2.3",
+ "ibexa/graphql": ">=2.5,<2.5.31|>=3.3,<3.3.28|>=4.2,<4.2.3",
"ibexa/post-install": "<=1.0.4",
"icecoder/icecoder": "<=8.1",
"idno/known": "<=1.3.1",
@@ -6681,18 +6677,20 @@
"illuminate/encryption": ">=4,<=4.0.11|>=4.1,<=4.1.31|>=4.2,<=4.2.22|>=5,<=5.0.35|>=5.1,<=5.1.46|>=5.2,<=5.2.45|>=5.3,<=5.3.31|>=5.4,<=5.4.36|>=5.5,<5.5.40|>=5.6,<5.6.15",
"illuminate/view": "<6.20.42|>=7,<7.30.6|>=8,<8.75",
"impresscms/impresscms": "<=1.4.3",
- "in2code/femanager": "<5.5.1|>=6,<6.3.1",
+ "in2code/femanager": "<5.5.2|>=6,<6.3.3|>=7,<7.0.1",
"in2code/lux": "<17.6.1|>=18,<24.0.2",
"intelliants/subrion": "<=4.2.1",
"islandora/islandora": ">=2,<2.4.1",
"ivankristianto/phpwhois": "<=4.3",
"jackalope/jackalope-doctrine-dbal": "<1.7.4",
"james-heinrich/getid3": "<1.9.21",
+ "jasig/phpcas": "<1.3.3",
"joomla/archive": "<1.1.12|>=2,<2.0.1",
"joomla/filesystem": "<1.6.2|>=2,<2.0.1",
"joomla/filter": "<1.4.4|>=2,<2.0.1",
"joomla/input": ">=2,<2.0.2",
"joomla/session": "<1.3.1",
+ "joyqi/hyper-down": "<=2.4.27",
"jsdecena/laracom": "<2.0.9",
"jsmitty12/phpwhois": "<5.1",
"kazist/phpwhois": "<=4.2.6",
@@ -6714,7 +6712,7 @@
"league/commonmark": "<0.18.3",
"league/flysystem": "<1.1.4|>=2,<2.1.1",
"lexik/jwt-authentication-bundle": "<2.10.7|>=2.11,<2.11.3",
- "librenms/librenms": "<=22.8",
+ "librenms/librenms": "<22.10",
"limesurvey/limesurvey": "<3.27.19",
"livehelperchat/livehelperchat": "<=3.91",
"livewire/livewire": ">2.2.4,<2.2.6",
@@ -6739,7 +6737,7 @@
"modx/revolution": "<= 2.8.3-pl|<2.8",
"mojo42/jirafeau": "<4.4",
"monolog/monolog": ">=1.8,<1.12",
- "moodle/moodle": "<4.0.1",
+ "moodle/moodle": "<4.0.5",
"mustache/mustache": ">=2,<2.14.1",
"namshi/jose": "<2.2",
"neoan3-apps/template": "<1.1.1",
@@ -6761,15 +6759,15 @@
"october/cms": "= 1.1.1|= 1.0.471|= 1.0.469|>=1.0.319,<1.0.469",
"october/october": ">=1.0.319,<1.0.466|>=2.1,<2.1.12",
"october/rain": "<1.0.472|>=1.1,<1.1.2",
- "october/system": "<2.2.34|>=3,<3.0.66",
+ "october/system": "<1.0.476|>=1.1,<1.1.12|>=2,<2.2.34|>=3,<3.0.66",
"onelogin/php-saml": "<2.10.4",
"oneup/uploader-bundle": "<1.9.3|>=2,<2.1.5",
"open-web-analytics/open-web-analytics": "<1.7.4",
- "opencart/opencart": "<=3.0.3.2",
+ "opencart/opencart": "<=3.0.3.7",
"openid/php-openid": "<2.3",
"openmage/magento-lts": "<19.4.15|>=20,<20.0.13",
"orchid/platform": ">=9,<9.4.4",
- "oro/commerce": ">=5,<5.0.4",
+ "oro/commerce": ">=4.1,<5.0.6",
"oro/crm": ">=1.7,<1.7.4|>=3.1,<4.1.17|>=4.2,<4.2.7",
"oro/platform": ">=1.7,<1.7.4|>=3.1,<3.1.29|>=4.1,<4.1.17|>=4.2,<4.2.8",
"packbackbooks/lti-1-3-php-library": "<5",
@@ -6788,6 +6786,7 @@
"phpmailer/phpmailer": "<6.5",
"phpmussel/phpmussel": ">=1,<1.6",
"phpmyadmin/phpmyadmin": "<5.1.3",
+ "phpmyfaq/phpmyfaq": "<=3.1.7",
"phpoffice/phpexcel": "<1.8",
"phpoffice/phpspreadsheet": "<1.16",
"phpseclib/phpseclib": "<2.0.31|>=3,<3.0.7",
@@ -6795,8 +6794,9 @@
"phpunit/phpunit": ">=4.8.19,<4.8.28|>=5,<5.6.3",
"phpwhois/phpwhois": "<=4.2.5",
"phpxmlrpc/extras": "<0.6.1",
+ "phpxmlrpc/phpxmlrpc": "<4.9",
"pimcore/data-hub": "<1.2.4",
- "pimcore/pimcore": "<=10.5.6",
+ "pimcore/pimcore": "<10.5.9",
"pocketmine/bedrock-protocol": "<8.0.2",
"pocketmine/pocketmine-mp": "<4.7.2|>= 4.0.0-BETA5, < 4.4.2",
"pressbooks/pressbooks": "<5.18",
@@ -6804,24 +6804,27 @@
"prestashop/blockwishlist": ">=2,<2.1.1",
"prestashop/contactform": ">=1.0.1,<4.3",
"prestashop/gamification": "<2.3.2",
- "prestashop/prestashop": ">=1.6.0.10,<1.7.8.7",
+ "prestashop/prestashop": "<1.7.8.8",
"prestashop/productcomments": "<5.0.2",
"prestashop/ps_emailsubscription": "<2.6.1",
"prestashop/ps_facetedsearch": "<3.4.1",
"prestashop/ps_linklist": "<3.1",
"privatebin/privatebin": "<1.4",
+ "processwire/processwire": "<=3.0.200",
"propel/propel": ">=2-alpha.1,<=2-alpha.7",
"propel/propel1": ">=1,<=1.7.1",
"pterodactyl/panel": "<1.7",
"ptrofimov/beanstalk_console": "<1.7.14",
"pusher/pusher-php-server": "<2.2.1",
"pwweb/laravel-core": "<=0.3.6-beta",
+ "pyrocms/pyrocms": "<=3.9.1",
"rainlab/debugbar-plugin": "<3.1",
"rankmath/seo-by-rank-math": "<=1.0.95",
"react/http": ">=0.7,<1.7",
"remdex/livehelperchat": "<3.99",
"rmccue/requests": ">=1.6,<1.8",
"robrichards/xmlseclibs": "<3.0.4",
+ "roots/soil": "<4.1",
"rudloff/alltube": "<3.0.3",
"s-cart/core": "<6.9",
"s-cart/s-cart": "<6.9",
@@ -6837,20 +6840,21 @@
"shopware/storefront": "<=6.4.8.1",
"shopxo/shopxo": "<2.2.6",
"showdoc/showdoc": "<2.10.4",
- "silverstripe/admin": ">=1,<1.8.1",
- "silverstripe/assets": ">=1,<1.10.1",
- "silverstripe/cms": "<4.3.6|>=4.4,<4.4.4",
+ "silverstripe/admin": ">=1,<1.11.3",
+ "silverstripe/assets": ">=1,<1.11.1",
+ "silverstripe/cms": "<4.11.3",
"silverstripe/comments": ">=1.3,<1.9.99|>=2,<2.9.99|>=3,<3.1.1",
"silverstripe/forum": "<=0.6.1|>=0.7,<=0.7.3",
- "silverstripe/framework": "<4.10.9",
+ "silverstripe/framework": "<4.11.14",
"silverstripe/graphql": "<3.5.2|>=4-alpha.1,<4-alpha.2|= 4.0.0-alpha1",
"silverstripe/hybridsessions": ">=1,<2.4.1|>=2.5,<2.5.1",
"silverstripe/registry": ">=2.1,<2.1.2|>=2.2,<2.2.1",
"silverstripe/restfulserver": ">=1,<1.0.9|>=2,<2.0.4",
"silverstripe/silverstripe-omnipay": "<2.5.2|>=3,<3.0.2|>=3.1,<3.1.4|>=3.2,<3.2.1",
- "silverstripe/subsites": ">=2,<2.1.1",
+ "silverstripe/subsites": ">=2,<2.6.1",
"silverstripe/taxonomy": ">=1.3,<1.3.1|>=2,<2.0.1",
"silverstripe/userforms": "<3",
+ "silverstripe/versioned-admin": ">=1,<1.11.1",
"simple-updates/phpwhois": "<=1",
"simplesamlphp/saml2": "<1.10.6|>=2,<2.3.8|>=3,<3.1.4",
"simplesamlphp/simplesamlphp": "<1.18.6",
@@ -6861,6 +6865,7 @@
"snipe/snipe-it": "<6.0.11|>= 6.0.0-RC-1, <= 6.0.0-RC-5",
"socalnick/scn-social-auth": "<1.15.2",
"socialiteproviders/steam": "<1.1",
+ "spatie/browsershot": "<3.57.4",
"spipu/html2pdf": "<5.2.4",
"spoonity/tcpdf": "<6.2.22",
"squizlabs/php_codesniffer": ">=1,<2.8.1|>=3,<3.0.1",
@@ -6918,20 +6923,22 @@
"thelia/thelia": ">=2.1-beta.1,<2.1.3",
"theonedemon/phpwhois": "<=4.2.5",
"thinkcmf/thinkcmf": "<=5.1.7",
- "tinymce/tinymce": "<5.10",
+ "thorsten/phpmyfaq": "<3.1.9",
+ "tinymce/tinymce": "<5.10.7|>=6,<6.3.1",
"titon/framework": ">=0,<9.9.99",
+ "tobiasbg/tablepress": "<= 2.0-RC1",
"topthink/framework": "<=6.0.13",
"topthink/think": "<=6.0.9",
"topthink/thinkphp": "<=3.2.3",
- "tribalsystems/zenario": "<9.2.55826",
+ "tribalsystems/zenario": "<=9.3.57595",
"truckersmp/phpwhois": "<=4.3.1",
"twig/twig": "<1.44.7|>=2,<2.15.3|>=3,<3.4.3",
- "typo3/cms": ">=6.2,<6.2.30|>=7,<7.6.32|>=8,<8.7.38|>=9,<9.5.29|>=10,<10.4.32|>=11,<11.5.16",
+ "typo3/cms": "<2.0.5|>=3,<3.0.3|>=6.2,<6.2.30|>=7,<7.6.32|>=8,<8.7.38|>=9,<9.5.29|>=10,<10.4.33|>=11,<11.5.20|>=12,<12.1.1",
"typo3/cms-backend": ">=7,<=7.6.50|>=8,<=8.7.39|>=9,<=9.5.24|>=10,<=10.4.13|>=11,<=11.1",
- "typo3/cms-core": ">=6.2,<=6.2.56|>=7,<7.6.58|>=8,<8.7.48|>=9,<9.5.37|>=10,<10.4.32|>=11,<11.5.16",
+ "typo3/cms-core": "<8.7.49|>=9,<9.5.38|>=10,<10.4.33|>=11,<11.5.20|>=12,<12.1.1",
"typo3/cms-form": ">=8,<=8.7.39|>=9,<=9.5.24|>=10,<=10.4.13|>=11,<=11.1",
"typo3/flow": ">=1,<1.0.4|>=1.1,<1.1.1|>=2,<2.0.1|>=2.3,<2.3.16|>=3,<3.0.12|>=3.1,<3.1.10|>=3.2,<3.2.13|>=3.3,<3.3.13|>=4,<4.0.6",
- "typo3/html-sanitizer": ">=1,<1.0.7|>=2,<2.0.16",
+ "typo3/html-sanitizer": ">=1,<1.5|>=2,<2.1.1",
"typo3/neos": ">=1.1,<1.1.3|>=1.2,<1.2.13|>=2,<2.0.4|>=2.3,<2.3.99|>=3,<3.0.20|>=3.1,<3.1.18|>=3.2,<3.2.14|>=3.3,<3.3.23|>=4,<4.0.17|>=4.1,<4.1.16|>=4.2,<4.2.12|>=4.3,<4.3.3",
"typo3/phar-stream-wrapper": ">=1,<2.1.1|>=3,<3.1.1",
"typo3/swiftmailer": ">=4.1,<4.1.99|>=5.4,<5.4.5",
@@ -6949,7 +6956,7 @@
"webcoast/deferred-image-processing": "<1.0.2",
"wikimedia/parsoid": "<0.12.2",
"willdurand/js-translation-bundle": "<2.1.1",
- "wintercms/winter": "<1.0.475|>=1.1,<1.1.9",
+ "wintercms/winter": "<1.0.475|>=1.1,<1.1.10|>=1.2,<1.2.1",
"woocommerce/woocommerce": "<6.6",
"wp-cli/wp-cli": "<2.5",
"wp-graphql/wp-graphql": "<0.3.5",
@@ -6959,14 +6966,15 @@
"yetiforce/yetiforce-crm": "<=6.4",
"yidashi/yii2cmf": "<=2",
"yii2mod/yii2-cms": "<1.9.2",
- "yiisoft/yii": ">=1.1.14,<1.1.15",
+ "yiisoft/yii": "<1.1.27",
"yiisoft/yii2": "<2.0.38",
"yiisoft/yii2-bootstrap": "<2.0.4",
"yiisoft/yii2-dev": "<2.0.43",
"yiisoft/yii2-elasticsearch": "<2.0.5",
- "yiisoft/yii2-gii": "<2.0.4",
+ "yiisoft/yii2-gii": "<=2.2.4",
"yiisoft/yii2-jui": "<2.0.4",
"yiisoft/yii2-redis": "<2.0.8",
+ "yikesinc/yikes-inc-easy-mailchimp-extender": "<6.8.6",
"yoast-seo-for-typo3/yoast_seo": "<7.2.3",
"yourls/yourls": "<=1.8.2",
"zendesk/zendesk_api_client_php": "<2.2.11",
@@ -7030,7 +7038,7 @@
"type": "tidelift"
}
],
- "time": "2022-10-13T20:04:41+00:00"
+ "time": "2022-12-22T20:04:36+00:00"
},
{
"name": "sebastian/cli-parser",
@@ -7998,16 +8006,16 @@
},
{
"name": "symfony/polyfill-php81",
- "version": "v1.26.0",
+ "version": "v1.27.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-php81.git",
- "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1"
+ "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/13f6d1271c663dc5ae9fb843a8f16521db7687a1",
- "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1",
+ "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/707403074c8ea6e2edaf8794b0157a0bfa52157a",
+ "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a",
"shasum": ""
},
"require": {
@@ -8016,7 +8024,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "1.26-dev"
+ "dev-main": "1.27-dev"
},
"thanks": {
"name": "symfony/polyfill",
@@ -8057,7 +8065,7 @@
"shim"
],
"support": {
- "source": "https://github.com/symfony/polyfill-php81/tree/v1.26.0"
+ "source": "https://github.com/symfony/polyfill-php81/tree/v1.27.0"
},
"funding": [
{
@@ -8073,7 +8081,7 @@
"type": "tidelift"
}
],
- "time": "2022-05-24T11:49:31+00:00"
+ "time": "2022-11-03T14:55:06+00:00"
},
{
"name": "symfony/process",
diff --git a/config/app.php b/config/app.php
index eae7b17..e26e819 100644
--- a/config/app.php
+++ b/config/app.php
@@ -2,57 +2,43 @@
return [
- /*
- |--------------------------------------------------------------------------
- | Application Name
- |--------------------------------------------------------------------------
- |
- | This value is the name of your application. This value is used when the
- | framework needs to place the application's name in a notification or
- | any other location as required by the application or its packages.
- |
- */
+ /**
+ * Application Name
+ *
+ * This value is the name of your application. This value is used when the
+ * framework needs to place the application's name in a notification or
+ * any other location as required by the application or its packages.
+ */
+ 'name' => 'Branch usage checker',
- 'name' => 'Branch usage checker',
+ /**
+ * Application Version
+ *
+ * This value determines the "version" your application is currently running
+ * in. You may want to follow the "Semantic Versioning" - Given a version
+ * number MAJOR.MINOR.PATCH when an update happens: https://semver.org.
+ *
+ */
+ 'version' => app('git.version'),
- /*
- |--------------------------------------------------------------------------
- | Application Version
- |--------------------------------------------------------------------------
- |
- | This value determines the "version" your application is currently running
- | in. You may want to follow the "Semantic Versioning" - Given a version
- | number MAJOR.MINOR.PATCH when an update happens: https://semver.org.
- |
- */
-
- 'version' => app('git.version'),
-
- /*
- |--------------------------------------------------------------------------
- | Application Environment
- |--------------------------------------------------------------------------
- |
- | This value determines the "environment" your application is currently
- | running in. This may determine how you prefer to configure various
- | services the application utilizes. This can be overridden using
- | the global command line "--env" option when calling commands.
- |
- */
-
- 'env' => 'development',
-
- /*
- |--------------------------------------------------------------------------
- | Autoloaded Service Providers
- |--------------------------------------------------------------------------
- |
- | The service providers listed here will be automatically loaded on the
- | request to your application. Feel free to add your own services to
- | this array to grant expanded functionality to your applications.
- |
- */
+ /**
+ * Application Environment
+ *
+ * This value determines the "environment" your application is currently
+ * running in. This may determine how you prefer to configure various
+ * services the application utilizes. This can be overridden using
+ * the global command line "--env" option when calling commands.
+ */
+ 'env' => 'development',
+ /**
+ * Autoloaded Service Providers
+ *
+ * The service providers listed here will be automatically loaded on the
+ * request to your application. Feel free to add your own services to
+ * this array to grant expanded functionality to your applications.
+ *
+ */
'providers' => [
App\Providers\AppServiceProvider::class,
],
diff --git a/config/commands.php b/config/commands.php
index 877a9a7..7678731 100644
--- a/config/commands.php
+++ b/config/commands.php
@@ -2,72 +2,57 @@
return [
- /*
- |--------------------------------------------------------------------------
- | Default Command
- |--------------------------------------------------------------------------
- |
- | Laravel Zero will always run the command specified below when no command name is
- | provided. Consider update the default command for single command applications.
- | You cannot pass arguments to the default command because they are ignored.
- |
- */
+ /**
+ * Default Command
+ *
+ * Laravel Zero will always run the command specified below when no command name is
+ * provided. Consider update the default command for single command applications.
+ * You cannot pass arguments to the default command because they are ignored.
+ */
'default' => NunoMaduro\LaravelConsoleSummary\SummaryCommand::class,
- /*
- |--------------------------------------------------------------------------
- | Commands Paths
- |--------------------------------------------------------------------------
- |
- | This value determines the "paths" that should be loaded by the console's
- | kernel. Foreach "path" present on the array provided below the kernel
- | will extract all "Illuminate\Console\Command" based class commands.
- |
- */
- 'paths' => [ app_path( 'Commands' ) ],
+ /**
+ * Commands Paths
+ *
+ * This value determines the "paths" that should be loaded by the console's
+ * kernel. Foreach "path" present on the array provided below the kernel
+ * will extract all "Illuminate\Console\Command" based class commands.
+ */
+ 'paths' => [app_path('Commands')],
- /*
- |--------------------------------------------------------------------------
- | Added Commands
- |--------------------------------------------------------------------------
- |
- | You may want to include a single command class without having to load an
- | entire folder. Here you can specify which commands should be added to
- | your list of commands. The console's kernel will try to load them.
- |
- */
- 'add' => [
+ /**
+ * Added Commands
+ *
+ * You may want to include a single command class without having to load an
+ * entire folder. Here you can specify which commands should be added to
+ * your list of commands. The console's kernel will try to load them.
+ */
+ 'add' => [
// ..
],
- /*
- |--------------------------------------------------------------------------
- | Hidden Commands
- |--------------------------------------------------------------------------
- |
- | Your application commands will always be visible on the application list
- | of commands. But you can still make them "hidden" specifying an array
- | of commands below. All "hidden" commands can still be run/executed.
- |
- */
- 'hidden' => [
+ /**
+ * Hidden Commands
+ *
+ * Your application commands will always be visible on the application list
+ * of commands. But you can still make them "hidden" specifying an array
+ * of commands below. All "hidden" commands can still be run/executed.
+ */
+ 'hidden' => [
NunoMaduro\LaravelConsoleSummary\SummaryCommand::class,
Symfony\Component\Console\Command\DumpCompletionCommand::class,
Symfony\Component\Console\Command\HelpCommand::class,
LaravelZero\Framework\Commands\StubPublishCommand::class,
],
- /*
- |--------------------------------------------------------------------------
- | Removed Commands
- |--------------------------------------------------------------------------
- |
- | Do you have a service provider that loads a list of commands that
- | you don't need? No problem. Laravel Zero allows you to specify
- | below a list of commands that you don't to see in your app.
- |
- */
- 'remove' => [
+ /**
+ * Removed Commands
+ *
+ * Do you have a service provider that loads a list of commands that
+ * you don't need? No problem. Laravel Zero allows you to specify
+ * below a list of commands that you don't to see in your app.
+ */
+ 'remove' => [
\App\Commands\InspireCommand::class,
Illuminate\Console\Scheduling\ScheduleRunCommand::class,
Illuminate\Console\Scheduling\ScheduleListCommand::class,