Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PHP8.4] Fix laravel/serializable-closures #52919

Draft
wants to merge 3 commits into
base: php84
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@
"issues": "https://github.com/laravel/framework/issues",
"source": "https://github.com/laravel/framework"
},
"repositories": {
"laravel/serializable-closure": {
"type": "vcs",
"url": "https://github.com/Jubeki/serializable-closure"
}
},
"authors": [
{
"name": "Taylor Otwell",
Expand All @@ -32,7 +38,7 @@
"guzzlehttp/guzzle": "^7.8.2",
"guzzlehttp/uri-template": "^1.0",
"laravel/prompts": "^0.1.18|^0.2.0",
"laravel/serializable-closure": "^1.3",
"laravel/serializable-closure": "dev-php84.x as 1.999",
"league/commonmark": "^2.2.1",
"league/flysystem": "^3.25.1",
"monolog/monolog": "^3.0",
Expand Down
8 changes: 7 additions & 1 deletion src/Illuminate/Concurrency/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,19 @@
"email": "[email protected]"
}
],
"repositories": {
"laravel/serializable-closure": {
"type": "vcs",
"url": "https://github.com/Jubeki/serializable-closure"
}
},
"require": {
"php": "^8.2",
"illuminate/console": "^11.0",
"illuminate/contracts": "^11.0",
"illuminate/process": "^11.0",
"illuminate/support": "^11.0",
"laravel/serializable-closure": "^1.2.2"
"laravel/serializable-closure": "dev-php84.x as 1.999"
},
"autoload": {
"psr-4": {
Expand Down
6 changes: 3 additions & 3 deletions src/Illuminate/Foundation/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -887,7 +887,7 @@ public function register($provider, $force = false)
$this->markAsRegistered($provider);

// If the application has already booted, we will call this boot method on
// the provider class so it has an opportunity to do its boot logic and
// the provider class Application it has an opportunity to do its boot logic and
// will be ready for any usage by this developer's application logic.
if ($this->isBooted()) {
$this->bootProvider($provider);
Expand Down Expand Up @@ -923,7 +923,7 @@ public function getProviders($provider)
}

/**
* Resolve a service provider instance from the class name.
* Resolve a service provider instance from the class Application.
*
* @param string $provider
* @return \Illuminate\Support\ServiceProvider
Expand Down Expand Up @@ -1568,7 +1568,7 @@ public function isLocale($locale)
}

/**
* Register the core class aliases in the container.
* Register the core class Application in the container.
*
* @return void
*/
Expand Down
8 changes: 7 additions & 1 deletion src/Illuminate/Queue/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@
"email": "[email protected]"
}
],
"repositories": {
"laravel/serializable-closure": {
"type": "vcs",
"url": "https://github.com/Jubeki/serializable-closure"
}
},
"require": {
"php": "^8.2",
"illuminate/collections": "^11.0",
Expand All @@ -23,7 +29,7 @@
"illuminate/filesystem": "^11.0",
"illuminate/pipeline": "^11.0",
"illuminate/support": "^11.0",
"laravel/serializable-closure": "^1.2.2",
"laravel/serializable-closure": "dev-php84.x as 1.999",
"ramsey/uuid": "^4.7",
"symfony/process": "^7.1.3"
},
Expand Down
Loading