language
stringclasses
1 value
owner
stringlengths
2
15
repo
stringlengths
2
21
sha
stringlengths
45
45
message
stringlengths
7
36.3k
path
stringlengths
1
199
patch
stringlengths
15
102k
is_multipart
bool
2 classes
Other
laravel
framework
dee4d82e0259b270413573c7792d92d49b51fe2a.json
add tests for policy resolution
tests/Integration/Auth/GatePolicyResolutionTest.php
@@ -0,0 +1,22 @@ +<?php + +namespace Illuminate\Tests\Integration\Auth; + +use Orchestra\Testbench\TestCase; +use Illuminate\Support\Facades\Gate; +use Illuminate\Tests\Integration\Auth\Fixtures\AuthenticationTestUser; +use Illuminate\Tests\Integration\Auth\Fixtures\Policies\AuthenticationTestUserPolicy; + +/** + * @group integration + */ +class GatePolicyResolutionTest extends TestCase +{ + public function testPolicyCanBeGuessedUsingClassConventions() + { + $this->assertInstanceOf( + AuthenticationTestUserPolicy::class, + Gate::getPolicyFor(AuthenticationTestUser::class) + ); + } +}
true
Other
laravel
framework
956fece317ada86ce2f205d5619e80a7d677f661.json
Update encrypter interface
src/Illuminate/Contracts/Encryption/Encrypter.php
@@ -10,6 +10,8 @@ interface Encrypter * @param mixed $value * @param bool $serialize * @return mixed + * + * @throws \Illuminate\Contracts\Encryption\EncryptException */ public function encrypt($value, $serialize = true); @@ -19,6 +21,8 @@ public function encrypt($value, $serialize = true); * @param mixed $payload * @param bool $unserialize * @return mixed + * + * @throws \Illuminate\Contracts\Encryption\DecryptException */ public function decrypt($payload, $unserialize = true); }
false
Other
laravel
framework
5356a02d54385f369068400a1b2740649da6e3e0.json
provide a path to view in compiled view: fix tests
tests/Integration/Mail/RenderingMailWithLocaleTest.php
@@ -31,14 +31,14 @@ public function testMailableRendersInDefaultLocale() { $mail = new RenderedTestMail; - $this->assertEquals('name'.PHP_EOL, $mail->render()); + $this->assertContains('name'.PHP_EOL, $mail->render()); } public function testMailableRendersInSelectedLocale() { $mail = (new RenderedTestMail)->locale('es'); - $this->assertEquals('nombre'.PHP_EOL, $mail->render()); + $this->assertContains('nombre'.PHP_EOL, $mail->render()); } public function testMailableRendersInAppSelectedLocale() @@ -47,7 +47,7 @@ public function testMailableRendersInAppSelectedLocale() $mail = new RenderedTestMail; - $this->assertEquals('nombre'.PHP_EOL, $mail->render()); + $this->assertContains('nombre'.PHP_EOL, $mail->render()); } }
false
Other
laravel
framework
db774be8588f9d30ce4577bc06fac9711e08d9cb.json
provide a path to view in compiled view
src/Illuminate/View/Compilers/BladeCompiler.php
@@ -118,7 +118,8 @@ public function compile($path = null) } if (! is_null($this->cachePath)) { - $contents = $this->compileString($this->files->get($this->getPath())); + $contents = "<?php/* {$this->getPath()} */?>\n"; + $contents .= $this->compileString($this->files->get($this->getPath())); $this->files->put($this->getCompiledPath($this->getPath()), $contents); }
true
Other
laravel
framework
db774be8588f9d30ce4577bc06fac9711e08d9cb.json
provide a path to view in compiled view
tests/View/ViewBladeCompilerTest.php
@@ -49,15 +49,15 @@ public function testCompileCompilesFileAndReturnsContents() { $compiler = new BladeCompiler($files = $this->getFiles(), __DIR__); $files->shouldReceive('get')->once()->with('foo')->andReturn('Hello World'); - $files->shouldReceive('put')->once()->with(__DIR__.'/'.sha1('foo').'.php', 'Hello World'); + $files->shouldReceive('put')->once()->with(__DIR__.'/'.sha1('foo').'.php', "<?php/* foo */?>\nHello World"); $compiler->compile('foo'); } public function testCompileCompilesAndGetThePath() { $compiler = new BladeCompiler($files = $this->getFiles(), __DIR__); $files->shouldReceive('get')->once()->with('foo')->andReturn('Hello World'); - $files->shouldReceive('put')->once()->with(__DIR__.'/'.sha1('foo').'.php', 'Hello World'); + $files->shouldReceive('put')->once()->with(__DIR__.'/'.sha1('foo').'.php', "<?php/* foo */?>\nHello World"); $compiler->compile('foo'); $this->assertEquals('foo', $compiler->getPath()); } @@ -73,7 +73,7 @@ public function testCompileWithPathSetBefore() { $compiler = new BladeCompiler($files = $this->getFiles(), __DIR__); $files->shouldReceive('get')->once()->with('foo')->andReturn('Hello World'); - $files->shouldReceive('put')->once()->with(__DIR__.'/'.sha1('foo').'.php', 'Hello World'); + $files->shouldReceive('put')->once()->with(__DIR__.'/'.sha1('foo').'.php', "<?php/* foo */?>\nHello World"); // set path before compilation $compiler->setPath('foo'); // trigger compilation with null $path @@ -93,6 +93,14 @@ public function testRawTagsCanBeSetToLegacyValues() }}')); } + public function testIncludePathToTemplate() + { + $compiler = new BladeCompiler($files = $this->getFiles(), __DIR__); + $files->shouldReceive('get')->once()->with('foo')->andReturn('Hello World'); + $files->shouldReceive('put')->once()->with(__DIR__.'/'.sha1('foo').'.php', "<?php/* foo */?>\nHello World"); + $compiler->compile('foo'); + } + protected function getFiles() { return m::mock(Filesystem::class);
true
Other
laravel
framework
f22647f8048961d75bd0944f12d38097fb4bc81f.json
Remove unused HttpException This exception was added in a previous PR to provide a more clear exception when crawling errors were presented. The crawling functionality has thus been removed from Laravel but it seems this exception was forgotten. It currently also conflicts with the inherited class which was made final in the latest PHPUnit 8 release. Previous PR: https://github.com/laravel/framework/pull/10230
src/Illuminate/Foundation/Testing/HttpException.php
@@ -1,10 +0,0 @@ -<?php - -namespace Illuminate\Foundation\Testing; - -use PHPUnit\Framework\ExpectationFailedException; - -class HttpException extends ExpectationFailedException -{ - // -}
false
Other
laravel
framework
810b3d91b2eecf922562e68b52ca3b6a7b076e7a.json
Remove deprecated defer property
src/Illuminate/Support/ServiceProvider.php
@@ -14,15 +14,6 @@ abstract class ServiceProvider */ protected $app; - /** - * Indicates if loading of the provider is deferred. - * - * @deprecated Implement the \Illuminate\Contracts\Support\DeferrableProvider interface instead. Will be removed in Laravel 5.9. - * - * @var bool - */ - protected $defer = false; - /** * The paths that should be published. * @@ -300,6 +291,6 @@ public function when() */ public function isDeferred() { - return $this->defer || $this instanceof DeferrableProvider; + return $this instanceof DeferrableProvider; } }
true
Other
laravel
framework
810b3d91b2eecf922562e68b52ca3b6a7b076e7a.json
Remove deprecated defer property
tests/Foundation/FoundationApplicationTest.php
@@ -8,6 +8,7 @@ use Illuminate\Foundation\Application; use Illuminate\Support\ServiceProvider; use Illuminate\Foundation\Events\LocaleUpdated; +use Illuminate\Contracts\Support\DeferrableProvider; use Illuminate\Foundation\Bootstrap\RegisterFacades; class FoundationApplicationTest extends TestCase @@ -324,10 +325,8 @@ public function register() } } -class ApplicationDeferredSharedServiceProviderStub extends ServiceProvider +class ApplicationDeferredSharedServiceProviderStub extends ServiceProvider implements DeferrableProvider { - protected $defer = true; - public function register() { $this->app->singleton('foo', function () { @@ -336,10 +335,9 @@ public function register() } } -class ApplicationDeferredServiceProviderCountStub extends ServiceProvider +class ApplicationDeferredServiceProviderCountStub extends ServiceProvider implements DeferrableProvider { public static $count = 0; - protected $defer = true; public function register() { @@ -348,10 +346,9 @@ public function register() } } -class ApplicationDeferredServiceProviderStub extends ServiceProvider +class ApplicationDeferredServiceProviderStub extends ServiceProvider implements DeferrableProvider { public static $initialized = false; - protected $defer = true; public function register() { @@ -360,10 +357,8 @@ public function register() } } -class ApplicationFactoryProviderStub extends ServiceProvider +class ApplicationFactoryProviderStub extends ServiceProvider implements DeferrableProvider { - protected $defer = true; - public function register() { $this->app->bind('foo', function () { @@ -374,10 +369,8 @@ public function register() } } -class ApplicationMultiProviderStub extends ServiceProvider +class ApplicationMultiProviderStub extends ServiceProvider implements DeferrableProvider { - protected $defer = true; - public function register() { $this->app->singleton('foo', function () {
true
Other
laravel
framework
4005e133b3aca9a118a3c971a3de65818a30c3a3.json
Remove deprecated helpers
src/Illuminate/Support/helpers.php
@@ -31,348 +31,6 @@ function append_config(array $array) } } -if (! function_exists('array_add')) { - /** - * Add an element to an array using "dot" notation if it doesn't exist. - * - * @param array $array - * @param string $key - * @param mixed $value - * @return array - * - * @deprecated Arr::add() should be used directly instead. Will be removed in Laravel 5.9. - */ - function array_add($array, $key, $value) - { - return Arr::add($array, $key, $value); - } -} - -if (! function_exists('array_collapse')) { - /** - * Collapse an array of arrays into a single array. - * - * @param array $array - * @return array - * - * @deprecated Arr::collapse() should be used directly instead. Will be removed in Laravel 5.9. - */ - function array_collapse($array) - { - return Arr::collapse($array); - } -} - -if (! function_exists('array_divide')) { - /** - * Divide an array into two arrays. One with keys and the other with values. - * - * @param array $array - * @return array - * - * @deprecated Arr::divide() should be used directly instead. Will be removed in Laravel 5.9. - */ - function array_divide($array) - { - return Arr::divide($array); - } -} - -if (! function_exists('array_dot')) { - /** - * Flatten a multi-dimensional associative array with dots. - * - * @param array $array - * @param string $prepend - * @return array - * - * @deprecated Arr::dot() should be used directly instead. Will be removed in Laravel 5.9. - */ - function array_dot($array, $prepend = '') - { - return Arr::dot($array, $prepend); - } -} - -if (! function_exists('array_except')) { - /** - * Get all of the given array except for a specified array of keys. - * - * @param array $array - * @param array|string $keys - * @return array - * - * @deprecated Arr::except() should be used directly instead. Will be removed in Laravel 5.9. - */ - function array_except($array, $keys) - { - return Arr::except($array, $keys); - } -} - -if (! function_exists('array_first')) { - /** - * Return the first element in an array passing a given truth test. - * - * @param array $array - * @param callable|null $callback - * @param mixed $default - * @return mixed - * - * @deprecated Arr::first() should be used directly instead. Will be removed in Laravel 5.9. - */ - function array_first($array, callable $callback = null, $default = null) - { - return Arr::first($array, $callback, $default); - } -} - -if (! function_exists('array_flatten')) { - /** - * Flatten a multi-dimensional array into a single level. - * - * @param array $array - * @param int $depth - * @return array - * - * @deprecated Arr::flatten() should be used directly instead. Will be removed in Laravel 5.9. - */ - function array_flatten($array, $depth = INF) - { - return Arr::flatten($array, $depth); - } -} - -if (! function_exists('array_forget')) { - /** - * Remove one or many array items from a given array using "dot" notation. - * - * @param array $array - * @param array|string $keys - * @return void - * - * @deprecated Arr::forget() should be used directly instead. Will be removed in Laravel 5.9. - */ - function array_forget(&$array, $keys) - { - return Arr::forget($array, $keys); - } -} - -if (! function_exists('array_get')) { - /** - * Get an item from an array using "dot" notation. - * - * @param \ArrayAccess|array $array - * @param string $key - * @param mixed $default - * @return mixed - * - * @deprecated Arr::get() should be used directly instead. Will be removed in Laravel 5.9. - */ - function array_get($array, $key, $default = null) - { - return Arr::get($array, $key, $default); - } -} - -if (! function_exists('array_has')) { - /** - * Check if an item or items exist in an array using "dot" notation. - * - * @param \ArrayAccess|array $array - * @param string|array $keys - * @return bool - * - * @deprecated Arr::has() should be used directly instead. Will be removed in Laravel 5.9. - */ - function array_has($array, $keys) - { - return Arr::has($array, $keys); - } -} - -if (! function_exists('array_last')) { - /** - * Return the last element in an array passing a given truth test. - * - * @param array $array - * @param callable|null $callback - * @param mixed $default - * @return mixed - * - * @deprecated Arr::last() should be used directly instead. Will be removed in Laravel 5.9. - */ - function array_last($array, callable $callback = null, $default = null) - { - return Arr::last($array, $callback, $default); - } -} - -if (! function_exists('array_only')) { - /** - * Get a subset of the items from the given array. - * - * @param array $array - * @param array|string $keys - * @return array - * - * @deprecated Arr::only() should be used directly instead. Will be removed in Laravel 5.9. - */ - function array_only($array, $keys) - { - return Arr::only($array, $keys); - } -} - -if (! function_exists('array_pluck')) { - /** - * Pluck an array of values from an array. - * - * @param array $array - * @param string|array $value - * @param string|array|null $key - * @return array - * - * @deprecated Arr::pluck() should be used directly instead. Will be removed in Laravel 5.9. - */ - function array_pluck($array, $value, $key = null) - { - return Arr::pluck($array, $value, $key); - } -} - -if (! function_exists('array_prepend')) { - /** - * Push an item onto the beginning of an array. - * - * @param array $array - * @param mixed $value - * @param mixed $key - * @return array - * - * @deprecated Arr::prepend() should be used directly instead. Will be removed in Laravel 5.9. - */ - function array_prepend($array, $value, $key = null) - { - return Arr::prepend($array, $value, $key); - } -} - -if (! function_exists('array_pull')) { - /** - * Get a value from the array, and remove it. - * - * @param array $array - * @param string $key - * @param mixed $default - * @return mixed - * - * @deprecated Arr::pull() should be used directly instead. Will be removed in Laravel 5.9. - */ - function array_pull(&$array, $key, $default = null) - { - return Arr::pull($array, $key, $default); - } -} - -if (! function_exists('array_random')) { - /** - * Get a random value from an array. - * - * @param array $array - * @param int|null $num - * @return mixed - * - * @deprecated Arr::random() should be used directly instead. Will be removed in Laravel 5.9. - */ - function array_random($array, $num = null) - { - return Arr::random($array, $num); - } -} - -if (! function_exists('array_set')) { - /** - * Set an array item to a given value using "dot" notation. - * - * If no key is given to the method, the entire array will be replaced. - * - * @param array $array - * @param string $key - * @param mixed $value - * @return array - * - * @deprecated Arr::set() should be used directly instead. Will be removed in Laravel 5.9. - */ - function array_set(&$array, $key, $value) - { - return Arr::set($array, $key, $value); - } -} - -if (! function_exists('array_sort')) { - /** - * Sort the array by the given callback or attribute name. - * - * @param array $array - * @param callable|string|null $callback - * @return array - * - * @deprecated Arr::sort() should be used directly instead. Will be removed in Laravel 5.9. - */ - function array_sort($array, $callback = null) - { - return Arr::sort($array, $callback); - } -} - -if (! function_exists('array_sort_recursive')) { - /** - * Recursively sort an array by keys and values. - * - * @param array $array - * @return array - * - * @deprecated Arr::sortRecursive() should be used directly instead. Will be removed in Laravel 5.9. - */ - function array_sort_recursive($array) - { - return Arr::sortRecursive($array); - } -} - -if (! function_exists('array_where')) { - /** - * Filter the array using the given callback. - * - * @param array $array - * @param callable $callback - * @return array - * - * @deprecated Arr::where() should be used directly instead. Will be removed in Laravel 5.9. - */ - function array_where($array, callable $callback) - { - return Arr::where($array, $callback); - } -} - -if (! function_exists('array_wrap')) { - /** - * If the given value is not an array, wrap it in one. - * - * @param mixed $value - * @return array - * - * @deprecated Arr::wrap() should be used directly instead. Will be removed in Laravel 5.9. - */ - function array_wrap($value) - { - return Arr::wrap($value); - } -} - if (! function_exists('blank')) { /** * Determine if the given value is "blank". @@ -402,21 +60,6 @@ function blank($value) } } -if (! function_exists('camel_case')) { - /** - * Convert a value to camel case. - * - * @param string $value - * @return string - * - * @deprecated Str::camel() should be used directly instead. Will be removed in Laravel 5.9. - */ - function camel_case($value) - { - return Str::camel($value); - } -} - if (! function_exists('class_basename')) { /** * Get the class "basename" of the given object / class. @@ -610,22 +253,6 @@ function e($value, $doubleEncode = true) } } -if (! function_exists('ends_with')) { - /** - * Determine if a given string ends with a given substring. - * - * @param string $haystack - * @param string|array $needles - * @return bool - * - * @deprecated Str::endsWith() should be used directly instead. Will be removed in Laravel 5.9. - */ - function ends_with($haystack, $needles) - { - return Str::endsWith($haystack, $needles); - } -} - if (! function_exists('env')) { /** * Gets the value of an environment variable. @@ -688,21 +315,6 @@ function head($array) } } -if (! function_exists('kebab_case')) { - /** - * Convert a string to kebab case. - * - * @param string $value - * @return string - * - * @deprecated Str::kebab() should be used directly instead. Will be removed in Laravel 5.9. - */ - function kebab_case($value) - { - return Str::kebab($value); - } -} - if (! function_exists('last')) { /** * Get the last element from an array. @@ -817,282 +429,6 @@ function retry($times, callable $callback, $sleep = 0) } } -if (! function_exists('snake_case')) { - /** - * Convert a string to snake case. - * - * @param string $value - * @param string $delimiter - * @return string - * - * @deprecated Str::snake() should be used directly instead. Will be removed in Laravel 5.9. - */ - function snake_case($value, $delimiter = '_') - { - return Str::snake($value, $delimiter); - } -} - -if (! function_exists('starts_with')) { - /** - * Determine if a given string starts with a given substring. - * - * @param string $haystack - * @param string|array $needles - * @return bool - * - * @deprecated Str::startsWith() should be used directly instead. Will be removed in Laravel 5.9. - */ - function starts_with($haystack, $needles) - { - return Str::startsWith($haystack, $needles); - } -} - -if (! function_exists('str_after')) { - /** - * Return the remainder of a string after a given value. - * - * @param string $subject - * @param string $search - * @return string - * - * @deprecated Str::after() should be used directly instead. Will be removed in Laravel 5.9. - */ - function str_after($subject, $search) - { - return Str::after($subject, $search); - } -} - -if (! function_exists('str_before')) { - /** - * Get the portion of a string before a given value. - * - * @param string $subject - * @param string $search - * @return string - * - * @deprecated Str::before() should be used directly instead. Will be removed in Laravel 5.9. - */ - function str_before($subject, $search) - { - return Str::before($subject, $search); - } -} - -if (! function_exists('str_contains')) { - /** - * Determine if a given string contains a given substring. - * - * @param string $haystack - * @param string|array $needles - * @return bool - * - * @deprecated Str::contains() should be used directly instead. Will be removed in Laravel 5.9. - */ - function str_contains($haystack, $needles) - { - return Str::contains($haystack, $needles); - } -} - -if (! function_exists('str_finish')) { - /** - * Cap a string with a single instance of a given value. - * - * @param string $value - * @param string $cap - * @return string - * - * @deprecated Str::finish() should be used directly instead. Will be removed in Laravel 5.9. - */ - function str_finish($value, $cap) - { - return Str::finish($value, $cap); - } -} - -if (! function_exists('str_is')) { - /** - * Determine if a given string matches a given pattern. - * - * @param string|array $pattern - * @param string $value - * @return bool - * - * @deprecated Str::is() should be used directly instead. Will be removed in Laravel 5.9. - */ - function str_is($pattern, $value) - { - return Str::is($pattern, $value); - } -} - -if (! function_exists('str_limit')) { - /** - * Limit the number of characters in a string. - * - * @param string $value - * @param int $limit - * @param string $end - * @return string - * - * @deprecated Str::limit() should be used directly instead. Will be removed in Laravel 5.9. - */ - function str_limit($value, $limit = 100, $end = '...') - { - return Str::limit($value, $limit, $end); - } -} - -if (! function_exists('str_plural')) { - /** - * Get the plural form of an English word. - * - * @param string $value - * @param int $count - * @return string - * - * @deprecated Str::plural() should be used directly instead. Will be removed in Laravel 5.9. - */ - function str_plural($value, $count = 2) - { - return Str::plural($value, $count); - } -} - -if (! function_exists('str_random')) { - /** - * Generate a more truly "random" alpha-numeric string. - * - * @param int $length - * @return string - * - * @throws \RuntimeException - * - * @deprecated Str::random() should be used directly instead. Will be removed in Laravel 5.9. - */ - function str_random($length = 16) - { - return Str::random($length); - } -} - -if (! function_exists('str_replace_array')) { - /** - * Replace a given value in the string sequentially with an array. - * - * @param string $search - * @param array $replace - * @param string $subject - * @return string - * - * @deprecated Str::replaceArray() should be used directly instead. Will be removed in Laravel 5.9. - */ - function str_replace_array($search, array $replace, $subject) - { - return Str::replaceArray($search, $replace, $subject); - } -} - -if (! function_exists('str_replace_first')) { - /** - * Replace the first occurrence of a given value in the string. - * - * @param string $search - * @param string $replace - * @param string $subject - * @return string - * - * @deprecated Str::replaceFirst() should be used directly instead. Will be removed in Laravel 5.9. - */ - function str_replace_first($search, $replace, $subject) - { - return Str::replaceFirst($search, $replace, $subject); - } -} - -if (! function_exists('str_replace_last')) { - /** - * Replace the last occurrence of a given value in the string. - * - * @param string $search - * @param string $replace - * @param string $subject - * @return string - * - * @deprecated Str::replaceLast() should be used directly instead. Will be removed in Laravel 5.9. - */ - function str_replace_last($search, $replace, $subject) - { - return Str::replaceLast($search, $replace, $subject); - } -} - -if (! function_exists('str_singular')) { - /** - * Get the singular form of an English word. - * - * @param string $value - * @return string - * - * @deprecated Str::singular() should be used directly instead. Will be removed in Laravel 5.9. - */ - function str_singular($value) - { - return Str::singular($value); - } -} - -if (! function_exists('str_slug')) { - /** - * Generate a URL friendly "slug" from a given string. - * - * @param string $title - * @param string $separator - * @param string $language - * @return string - * - * @deprecated Str::slug() should be used directly instead. Will be removed in Laravel 5.9. - */ - function str_slug($title, $separator = '-', $language = 'en') - { - return Str::slug($title, $separator, $language); - } -} - -if (! function_exists('str_start')) { - /** - * Begin a string with a single instance of a given value. - * - * @param string $value - * @param string $prefix - * @return string - * - * @deprecated Str::start() should be used directly instead. Will be removed in Laravel 5.9. - */ - function str_start($value, $prefix) - { - return Str::start($value, $prefix); - } -} - -if (! function_exists('studly_case')) { - /** - * Convert a value to studly caps case. - * - * @param string $value - * @return string - * - * @deprecated Str::studly() should be used directly instead. Will be removed in Laravel 5.9. - */ - function studly_case($value) - { - return Str::studly($value); - } -} - if (! function_exists('tap')) { /** * Call the given Closure with the given value then return the value. @@ -1154,21 +490,6 @@ function throw_unless($condition, $exception, ...$parameters) } } -if (! function_exists('title_case')) { - /** - * Convert a value to title case. - * - * @param string $value - * @return string - * - * @deprecated Str::title() should be used directly instead. Will be removed in Laravel 5.9. - */ - function title_case($value) - { - return Str::title($value); - } -} - if (! function_exists('trait_uses_recursive')) { /** * Returns all traits used by a trait and its traits.
false
Other
laravel
framework
94f425eb7cdd68b7a8842e42dbddde37e41fbcf1.json
Remove deprecated getRelation method on BelongsTo
src/Illuminate/Database/Eloquent/Relations/BelongsTo.php
@@ -368,15 +368,4 @@ public function getRelationName() { return $this->relationName; } - - /** - * Get the name of the relationship. - * - * @return string - * @deprecated The getRelationName() method should be used instead. Will be removed in Laravel 5.9. - */ - public function getRelation() - { - return $this->relationName; - } }
false
Other
laravel
framework
09258473167752d3206226609f6e4e0e691fe2c2.json
improve assertJsonValidationErrors error message
src/Illuminate/Foundation/Testing/TestResponse.php
@@ -638,13 +638,22 @@ public function assertJsonCount(int $count, $key = null) */ public function assertJsonValidationErrors($keys) { + $keys = Arr::wrap($keys); + + PHPUnit::assertNotEmpty($keys, 'You need to provide at least one expected key'); + $errors = $this->json()['errors'] ?? []; - foreach (Arr::wrap($keys) as $key) { + $errorMessage = $errors + ? 'Response has the following JSON validation errors: '. + PHP_EOL.PHP_EOL.json_encode($errors, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE) + : 'Response did not have JSON validation errors'; + + foreach ($keys as $key) { PHPUnit::assertArrayHasKey( $key, $errors, - "Failed to find a validation error in the response for key: '{$key}'" + "Failed to find a validation error in the response for key: '{$key}'".PHP_EOL.PHP_EOL.$errorMessage ); }
true
Other
laravel
framework
09258473167752d3206226609f6e4e0e691fe2c2.json
improve assertJsonValidationErrors error message
tests/Foundation/FoundationTestResponseTest.php
@@ -344,6 +344,17 @@ public function testAssertJsonValidationErrorsCanFailWhenThereAreNoErrors() $testResponse->assertJsonValidationErrors('bar'); } + public function testAssertJsonValidationErrorsFailsWhenGivenAnEmptyArray() + { + $this->expectException(AssertionFailedError::class); + + $testResponse = TestResponse::fromBaseResponse( + (new Response)->setContent(json_encode(['errors' => ['foo' => 'oops']])) + ); + + $testResponse->assertJsonValidationErrors([]); + } + public function testAssertJsonMissingValidationErrors() { $baseResponse = tap(new Response, function ($response) {
true
Other
laravel
framework
3543314ce05a09d40a71bd43c89080084d3a1620.json
Fix misspelling in mailer fake implementation
src/Illuminate/Support/Testing/Fakes/MailFake.php
@@ -263,7 +263,7 @@ public function bcc($users) } /** - * Send a new message when only a raw text part. + * Send a new message with only a raw text part. * * @param string $text * @param \Closure|string $callback
false
Other
laravel
framework
cd9f1c77661112b835e9e8de7fed0eb365e498de.json
Fix misspellings in mailer implementation
src/Illuminate/Mail/Mailer.php
@@ -160,7 +160,7 @@ public function bcc($users) } /** - * Send a new message with only an HTML part. + * Send a new message with only a HTML part. * * @param string $html * @param mixed $callback @@ -172,7 +172,7 @@ public function html($html, $callback) } /** - * Send a new message when only a raw text part. + * Send a new message with only a raw text part. * * @param string $text * @param mixed $callback @@ -184,7 +184,7 @@ public function raw($text, $callback) } /** - * Send a new message when only a plain part. + * Send a new message with only a plain part. * * @param string $view * @param array $data
false
Other
laravel
framework
c066baf94e8c28d0c4dc5728c2381ab5a3758d39.json
Fix misspelling in mailer contract
src/Illuminate/Contracts/Mail/Mailer.php
@@ -21,7 +21,7 @@ public function to($users); public function bcc($users); /** - * Send a new message when only a raw text part. + * Send a new message with only a raw text part. * * @param string $text * @param mixed $callback
false
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Auth/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Broadcasting/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Bus/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Cache/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Config/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Console/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Container/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Contracts/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Cookie/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Database/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Encryption/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Events/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Filesystem/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Hashing/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Http/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Log/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Mail/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Notifications/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Pagination/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Pipeline/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Queue/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Redis/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Routing/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Session/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Support/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Translation/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Validation/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
19d771c8f7c9616b58b0feca9824308ddf62b444.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/View/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Auth/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Broadcasting/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Bus/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Cache/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Config/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Console/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Container/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Contracts/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Cookie/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Database/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Encryption/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Events/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Filesystem/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Hashing/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Http/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Log/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Mail/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Notifications/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Pagination/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Pipeline/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Queue/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Redis/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Routing/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Session/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Support/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Translation/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/Validation/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
9e57e8bea04638d5bafec62db1051fbc2ce39e3a.json
Add license file to each component Since we use a sub-split to split components into separate packages it's wanted that we also provide a license file for each component. Fixes https://github.com/laravel/framework/issues/27392
src/Illuminate/View/LICENSE.md
@@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) Taylor Otwell + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE.
true
Other
laravel
framework
acb98b0c7985e063a3886e2c29c0201fd5e310ff.json
Fix Memcached skipping For an unknown reason, Travis suddenly stopped providing the Memcached extension. We'll need to install the memcached module ourselves with PECL. Reported as an issue to Travis here: https://travis-ci.community/t/unable-to-load-dynamic-library-memcached-so/2232
.travis.yml
@@ -29,8 +29,7 @@ services: before_install: - phpenv config-rm xdebug.ini || true - - echo "extension = memcached.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini - - printf "\n" | pecl install -f redis + - printf "\n" | pecl install -f memcached redis - travis_retry composer self-update - mysql -e 'CREATE DATABASE forge;'
false
Other
laravel
framework
1069202babd7c2042a0da393e69254c00c0f737b.json
Use orchestra/testbench-core 3.8.* PHPUnit 8 support has been made available
composer.json
@@ -83,7 +83,7 @@ "league/flysystem-cached-adapter": "^1.0", "mockery/mockery": "^1.0", "moontoast/math": "^1.1", - "orchestra/testbench-core": "dev-phpunit8 as 3.8.x-dev", + "orchestra/testbench-core": "3.8.*", "pda/pheanstalk": "^3.0", "phpunit/phpunit": "^7.5|^8.0", "predis/predis": "^1.1.1",
false
Other
laravel
framework
bf23d49c0ca229f335108810eeefa5bfe16652f0.json
Remove test case for accessor
tests/Http/HttpJsonResponseTest.php
@@ -44,14 +44,6 @@ public function testGetOriginalContent() $this->assertInstanceOf(JsonResponseTestArrayableObject::class, $response->getOriginalContent()); } - public function testGetCallback(): void - { - $response = new JsonResponse; - $this->assertNull($response->getCallback()); - $response->withCallback('callback'); - $this->assertEquals('callback', $response->getCallback()); - } - public function testSetAndRetrieveOptions() { $response = new JsonResponse(['foo' => 'bar']);
true
Other
laravel
framework
bf23d49c0ca229f335108810eeefa5bfe16652f0.json
Remove test case for accessor
tests/Http/HttpResponseTest.php
@@ -89,12 +89,6 @@ public function testWithCookie() $this->assertEquals('bar', $cookies[0]->getValue()); } - public function testGetCallback() - { - $response = new Response; - $this->assertNull($response->getCallback()); - } - public function testGetOriginalContent() { $arr = ['foo' => 'bar'];
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Auth/AuthDatabaseTokenRepositoryTest.php
@@ -13,14 +13,14 @@ class AuthDatabaseTokenRepositoryTest extends TestCase { - public function setUp(): void + protected function setUp(): void { parent::setUp(); Carbon::setTestNow(Carbon::now()); } - public function tearDown(): void + protected function tearDown(): void { parent::tearDown();
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Auth/AuthDatabaseUserProviderTest.php
@@ -13,7 +13,7 @@ class AuthDatabaseUserProviderTest extends TestCase { - public function tearDown(): void + protected function tearDown(): void { m::close(); }
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Auth/AuthEloquentUserProviderTest.php
@@ -11,7 +11,7 @@ class AuthEloquentUserProviderTest extends TestCase { - public function tearDown(): void + protected function tearDown(): void { m::close(); }
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Auth/AuthGuardTest.php
@@ -23,7 +23,7 @@ class AuthGuardTest extends TestCase { - public function tearDown(): void + protected function tearDown(): void { m::close(); }
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Auth/AuthPasswordBrokerTest.php
@@ -15,7 +15,7 @@ class AuthPasswordBrokerTest extends TestCase { - public function tearDown(): void + protected function tearDown(): void { m::close(); }
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Auth/AuthenticateMiddlewareTest.php
@@ -18,7 +18,7 @@ class AuthenticateMiddlewareTest extends TestCase { protected $auth; - public function setUp(): void + protected function setUp(): void { $container = Container::setInstance(new Container); @@ -29,7 +29,7 @@ public function setUp(): void }); } - public function tearDown(): void + protected function tearDown(): void { m::close(); }
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Auth/AuthorizeMiddlewareTest.php
@@ -23,7 +23,7 @@ class AuthorizeMiddlewareTest extends TestCase protected $user; protected $router; - public function setUp(): void + protected function setUp(): void { parent::setUp(); @@ -44,7 +44,7 @@ public function setUp(): void }); } - public function tearDown(): void + protected function tearDown(): void { m::close(); }
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Broadcasting/BroadcastEventTest.php
@@ -9,7 +9,7 @@ class BroadcastEventTest extends TestCase { - public function tearDown(): void + protected function tearDown(): void { m::close(); }
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Broadcasting/BroadcasterTest.php
@@ -18,14 +18,14 @@ class BroadcasterTest extends TestCase */ public $broadcaster; - public function setUp(): void + protected function setUp(): void { parent::setUp(); $this->broadcaster = new FakeBroadcaster; } - public function tearDown(): void + protected function tearDown(): void { m::close(); }
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Broadcasting/PusherBroadcasterTest.php
@@ -16,7 +16,7 @@ class PusherBroadcasterTest extends TestCase public $pusher; - public function setUp(): void + protected function setUp(): void { parent::setUp();
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Broadcasting/RedisBroadcasterTest.php
@@ -14,14 +14,14 @@ class RedisBroadcasterTest extends TestCase */ public $broadcaster; - public function setUp(): void + protected function setUp(): void { parent::setUp(); $this->broadcaster = m::mock(RedisBroadcaster::class)->makePartial(); } - public function tearDown(): void + protected function tearDown(): void { m::close(); }
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Broadcasting/UsePusherChannelsNamesTest.php
@@ -14,14 +14,14 @@ class UsePusherChannelConventionsTest extends TestCase */ public $broadcaster; - public function setUp(): void + protected function setUp(): void { parent::setUp(); $this->broadcaster = new FakeBroadcasterUsingPusherChannelsNames(); } - public function tearDown(): void + protected function tearDown(): void { m::close(); }
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Bus/BusDispatcherTest.php
@@ -15,7 +15,7 @@ class BusDispatcherTest extends TestCase { - public function tearDown(): void + protected function tearDown(): void { m::close(); }
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Cache/CacheDatabaseStoreTest.php
@@ -13,7 +13,7 @@ class CacheDatabaseStoreTest extends TestCase { - public function tearDown(): void + protected function tearDown(): void { m::close(); }
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Cache/CacheEventsTest.php
@@ -15,7 +15,7 @@ class CacheEventsTest extends TestCase { - public function tearDown(): void + protected function tearDown(): void { m::close(); }
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Cache/CacheFileStoreTest.php
@@ -10,14 +10,14 @@ class CacheFileStoreTest extends TestCase { - public function setUp(): void + protected function setUp(): void { parent::setUp(); Carbon::setTestNow(Carbon::now()); } - public function tearDown(): void + protected function tearDown(): void { parent::tearDown();
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Cache/CacheManagerTest.php
@@ -9,7 +9,7 @@ class CacheManagerTest extends TestCase { - public function tearDown(): void + protected function tearDown(): void { m::close(); }
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Cache/CacheMemcachedConnectorTest.php
@@ -9,7 +9,7 @@ class CacheMemcachedConnectorTest extends TestCase { - public function tearDown(): void + protected function tearDown(): void { m::close(); }
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Cache/CacheRateLimiterTest.php
@@ -9,7 +9,7 @@ class CacheRateLimiterTest extends TestCase { - public function tearDown(): void + protected function tearDown(): void { m::close(); }
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Cache/CacheRedisStoreTest.php
@@ -9,7 +9,7 @@ class CacheRedisStoreTest extends TestCase { - public function tearDown(): void + protected function tearDown(): void { m::close(); }
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Cache/CacheTableCommandTest.php
@@ -14,7 +14,7 @@ class CacheTableCommandTest extends TestCase { - public function tearDown(): void + protected function tearDown(): void { m::close(); }
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Cache/CacheTaggedCacheTest.php
@@ -14,7 +14,7 @@ class CacheTaggedCacheTest extends TestCase { - public function tearDown(): void + protected function tearDown(): void { m::close(); }
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Cache/ClearCommandTest.php
@@ -52,7 +52,7 @@ protected function setUp(): void $this->command->setLaravel($app); } - public function tearDown(): void + protected function tearDown(): void { m::close(); }
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Cache/RedisCacheIntegrationTest.php
@@ -12,13 +12,13 @@ class RedisCacheIntegrationTest extends TestCase { use InteractsWithRedis; - public function setUp(): void + protected function setUp(): void { parent::setUp(); $this->setUpRedis(); } - public function tearDown(): void + protected function tearDown(): void { parent::tearDown(); m::close();
true
Other
laravel
framework
222800c2658647619ed9cbf608faaae277a1c8a1.json
Use proper method visibility
tests/Console/ConsoleApplicationTest.php
@@ -12,7 +12,7 @@ class ConsoleApplicationTest extends TestCase { - public function tearDown(): void + protected function tearDown(): void { m::close(); }
true