diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index e5ecfbb..228fccd 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -19,7 +19,7 @@ class Kernel extends ConsoleKernel /** * Define the application's command schedule. * - * @param Schedule $schedule + * @param Schedule $schedule * @return void */ protected function schedule(Schedule $schedule) diff --git a/app/Events/GoalAchieved.php b/app/Events/GoalAchieved.php index 60629d5..a10a70e 100644 --- a/app/Events/GoalAchieved.php +++ b/app/Events/GoalAchieved.php @@ -20,7 +20,7 @@ class GoalAchieved /** * Create a new event instance. * - * @param Goal $goal + * @param Goal $goal */ public function __construct(Goal $goal) { diff --git a/app/Events/LoanRecorded.php b/app/Events/LoanRecorded.php index 8db0ae2..56a0c09 100644 --- a/app/Events/LoanRecorded.php +++ b/app/Events/LoanRecorded.php @@ -20,7 +20,7 @@ class LoanRecorded /** * Create a new event instance. * - * @param Loan $loan + * @param Loan $loan */ public function __construct(Loan $loan) { diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php index 05dffaf..3dcc158 100644 --- a/app/Exceptions/Handler.php +++ b/app/Exceptions/Handler.php @@ -31,7 +31,7 @@ class Handler extends ExceptionHandler /** * Report or log an exception. * - * @param Exception $exception + * @param Exception $exception * @return void * * @throws Exception @@ -44,8 +44,8 @@ public function report(Exception $exception) /** * Render an exception into an HTTP response. * - * @param Request $request - * @param Exception $exception + * @param Request $request + * @param Exception $exception * @return Response * * @throws Exception diff --git a/app/Http/Controllers/CategoryController.php b/app/Http/Controllers/CategoryController.php index 7215257..ec0fcb0 100644 --- a/app/Http/Controllers/CategoryController.php +++ b/app/Http/Controllers/CategoryController.php @@ -11,7 +11,7 @@ class CategoryController extends Controller /** * Display a listing of the resource. * - * @param Request $request + * @param Request $request * @return Response */ public function index(Request $request) diff --git a/app/Http/Controllers/ExpenseController.php b/app/Http/Controllers/ExpenseController.php index 498b41f..5cfcdf3 100644 --- a/app/Http/Controllers/ExpenseController.php +++ b/app/Http/Controllers/ExpenseController.php @@ -10,7 +10,7 @@ class ExpenseController extends Controller { /** - * @param Request $request + * @param Request $request * @return Collection */ public function store(Request $request) diff --git a/app/Http/Controllers/GoalController.php b/app/Http/Controllers/GoalController.php index 9ecd070..ae8d29a 100644 --- a/app/Http/Controllers/GoalController.php +++ b/app/Http/Controllers/GoalController.php @@ -13,7 +13,7 @@ class GoalController extends Controller /** * Store a newly created resource in storage. * - * @param GoalRequest $request + * @param GoalRequest $request * @return Response */ public function store(GoalRequest $request) diff --git a/app/Http/Controllers/GoalTransactionController.php b/app/Http/Controllers/GoalTransactionController.php index e74d826..9e1bd1e 100644 --- a/app/Http/Controllers/GoalTransactionController.php +++ b/app/Http/Controllers/GoalTransactionController.php @@ -12,8 +12,8 @@ class GoalTransactionController extends Controller /** * Store a newly created resource in storage. * - * @param Request $request - * @param Goal $goal + * @param Request $request + * @param Goal $goal * @return Response */ public function store(Request $request, Goal $goal) diff --git a/app/Http/Controllers/LoanController.php b/app/Http/Controllers/LoanController.php index de11d62..2d31964 100644 --- a/app/Http/Controllers/LoanController.php +++ b/app/Http/Controllers/LoanController.php @@ -11,7 +11,7 @@ class LoanController extends Controller /** * Store a newly created resource in storage. * - * @param Request $request + * @param Request $request * @return void */ public function store(Request $request) diff --git a/app/Http/Controllers/PlanController.php b/app/Http/Controllers/PlanController.php index 2531402..06b4e49 100644 --- a/app/Http/Controllers/PlanController.php +++ b/app/Http/Controllers/PlanController.php @@ -12,7 +12,7 @@ class PlanController extends Controller /** * Store a newly created resource in storage. * - * @param Request $request + * @param Request $request * @return Response */ public function store(Request $request) diff --git a/app/Http/Controllers/TransferController.php b/app/Http/Controllers/TransferController.php index 5477b2f..039833b 100644 --- a/app/Http/Controllers/TransferController.php +++ b/app/Http/Controllers/TransferController.php @@ -13,7 +13,7 @@ class TransferController extends Controller /** * Store a newly created resource in storage. * - * @param Request $request + * @param Request $request * @return JsonResponse */ public function store(Request $request) @@ -41,8 +41,9 @@ public function store(Request $request) } /** - * @param Request $request + * @param Request $request * @return array + * * @deprecated */ private function singleToManyCurrency(Request $request): array diff --git a/app/Http/Controllers/WalletExpenseController.php b/app/Http/Controllers/WalletExpenseController.php index 8d1345a..32687ed 100644 --- a/app/Http/Controllers/WalletExpenseController.php +++ b/app/Http/Controllers/WalletExpenseController.php @@ -12,8 +12,8 @@ class WalletExpenseController extends Controller /** * Store a newly created resource in storage. * - * @param Request $request - * @param Wallet $wallet + * @param Request $request + * @param Wallet $wallet * @return Response */ public function store(Request $request, Wallet $wallet) diff --git a/app/Http/Controllers/WalletIncomeController.php b/app/Http/Controllers/WalletIncomeController.php index c3c0ff2..ee7cc0c 100644 --- a/app/Http/Controllers/WalletIncomeController.php +++ b/app/Http/Controllers/WalletIncomeController.php @@ -12,8 +12,8 @@ class WalletIncomeController extends Controller /** * Store a newly created resource in storage. * - * @param Request $request - * @param Wallet $wallet + * @param Request $request + * @param Wallet $wallet * @return Response */ public function store(Request $request, Wallet $wallet) diff --git a/app/Http/Middleware/Authenticate.php b/app/Http/Middleware/Authenticate.php index adff969..4e8922a 100644 --- a/app/Http/Middleware/Authenticate.php +++ b/app/Http/Middleware/Authenticate.php @@ -10,7 +10,7 @@ class Authenticate extends Middleware /** * Get the path the user should be redirected to when they are not authenticated. * - * @param Request $request + * @param Request $request * @return string|null */ protected function redirectTo($request) diff --git a/app/Http/Middleware/RedirectIfAuthenticated.php b/app/Http/Middleware/RedirectIfAuthenticated.php index fec22fe..b8a8409 100644 --- a/app/Http/Middleware/RedirectIfAuthenticated.php +++ b/app/Http/Middleware/RedirectIfAuthenticated.php @@ -12,9 +12,9 @@ class RedirectIfAuthenticated /** * Handle an incoming request. * - * @param Request $request - * @param Closure $next - * @param string|null $guard + * @param Request $request + * @param Closure $next + * @param string|null $guard * @return mixed */ public function handle($request, Closure $next, $guard = null) diff --git a/app/Jobs/GenerateMonthlyTransactions.php b/app/Jobs/GenerateMonthlyTransactions.php index f74f714..a9c6bff 100644 --- a/app/Jobs/GenerateMonthlyTransactions.php +++ b/app/Jobs/GenerateMonthlyTransactions.php @@ -20,7 +20,7 @@ class GenerateMonthlyTransactions implements ShouldQueue /** * Create a new job instance. * - * @param User $user + * @param User $user */ public function __construct(User $user) { diff --git a/app/Listeners/DepositLoanToWallet.php b/app/Listeners/DepositLoanToWallet.php index 92e3b4e..6008084 100644 --- a/app/Listeners/DepositLoanToWallet.php +++ b/app/Listeners/DepositLoanToWallet.php @@ -19,7 +19,7 @@ public function __construct() /** * Handle the event. * - * @param LoanRecorded $event + * @param LoanRecorded $event * @return void */ public function handle(LoanRecorded $event) diff --git a/app/Listeners/PayoffTheLoanGoal.php b/app/Listeners/PayoffTheLoanGoal.php index 063a87d..7b97a97 100644 --- a/app/Listeners/PayoffTheLoanGoal.php +++ b/app/Listeners/PayoffTheLoanGoal.php @@ -19,7 +19,7 @@ public function __construct() /** * Handle the event. * - * @param LoanRecorded $event + * @param LoanRecorded $event * @return void */ public function handle(LoanRecorded $event) diff --git a/app/PendingTransaction.php b/app/PendingTransaction.php index fed2d68..aab4841 100644 --- a/app/PendingTransaction.php +++ b/app/PendingTransaction.php @@ -16,7 +16,7 @@ class PendingTransaction extends Transaction ]; /** - * @param ScheduledTransaction $scheduledTransaction + * @param ScheduledTransaction $scheduledTransaction */ public static function generateMonthlyTransactions($scheduledTransaction) { diff --git a/app/Policies/WalletPolicy.php b/app/Policies/WalletPolicy.php index 60c31f9..e48aafa 100644 --- a/app/Policies/WalletPolicy.php +++ b/app/Policies/WalletPolicy.php @@ -13,7 +13,7 @@ class WalletPolicy /** * Determine whether the user can view any wallets. * - * @param User $user + * @param User $user * @return mixed */ public function viewAny(User $user) @@ -24,8 +24,8 @@ public function viewAny(User $user) /** * Determine whether the user can view the wallet. * - * @param User $user - * @param Wallet $wallet + * @param User $user + * @param Wallet $wallet * @return mixed */ public function view(User $user, Wallet $wallet) @@ -36,7 +36,7 @@ public function view(User $user, Wallet $wallet) /** * Determine whether the user can create wallets. * - * @param User $user + * @param User $user * @return mixed */ public function create(User $user) @@ -54,8 +54,8 @@ public function adjustment(User $user, Wallet $wallet) /** * Determine whether the user can update the wallet. * - * @param User $user - * @param Wallet $wallet + * @param User $user + * @param Wallet $wallet * @return mixed */ public function update(User $user, Wallet $wallet) @@ -66,8 +66,8 @@ public function update(User $user, Wallet $wallet) /** * Determine whether the user can delete the wallet. * - * @param User $user - * @param Wallet $wallet + * @param User $user + * @param Wallet $wallet * @return mixed */ public function delete(User $user, Wallet $wallet) @@ -78,8 +78,8 @@ public function delete(User $user, Wallet $wallet) /** * Determine whether the user can restore the wallet. * - * @param User $user - * @param Wallet $wallet + * @param User $user + * @param Wallet $wallet * @return mixed */ public function restore(User $user, Wallet $wallet) @@ -90,8 +90,8 @@ public function restore(User $user, Wallet $wallet) /** * Determine whether the user can permanently delete the wallet. * - * @param User $user - * @param Wallet $wallet + * @param User $user + * @param Wallet $wallet * @return mixed */ public function forceDelete(User $user, Wallet $wallet) diff --git a/app/ScheduledTransaction.php b/app/ScheduledTransaction.php index 7c4649b..621c4c1 100644 --- a/app/ScheduledTransaction.php +++ b/app/ScheduledTransaction.php @@ -20,6 +20,7 @@ class ScheduledTransaction extends Transaction /** * @return Rule + * * @throws InvalidRRule */ public static function rule() diff --git a/composer.lock b/composer.lock index 0b4ceab..ee7e730 100644 --- a/composer.lock +++ b/composer.lock @@ -515,23 +515,24 @@ }, { "name": "guzzlehttp/guzzle", - "version": "6.5.2", + "version": "6.5.6", "source": { "type": "git", "url": "https://github.com/guzzle/guzzle.git", - "reference": "43ece0e75098b7ecd8d13918293029e555a50f82" + "reference": "f092dd734083473658de3ee4bef093ed77d2689c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/43ece0e75098b7ecd8d13918293029e555a50f82", - "reference": "43ece0e75098b7ecd8d13918293029e555a50f82", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/f092dd734083473658de3ee4bef093ed77d2689c", + "reference": "f092dd734083473658de3ee4bef093ed77d2689c", "shasum": "" }, "require": { "ext-json": "*", "guzzlehttp/promises": "^1.0", "guzzlehttp/psr7": "^1.6.1", - "php": ">=5.5" + "php": ">=5.5", + "symfony/polyfill-intl-idn": "^1.17.0" }, "require-dev": { "ext-curl": "*", @@ -539,7 +540,6 @@ "psr/log": "^1.1" }, "suggest": { - "ext-intl": "Required for Internationalized Domain Name (IDN) support", "psr/log": "Required for using the Log middleware" }, "type": "library", @@ -549,22 +549,52 @@ } }, "autoload": { - "psr-4": { - "GuzzleHttp\\": "src/" - }, "files": [ "src/functions_include.php" - ] + ], + "psr-4": { + "GuzzleHttp\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, { "name": "Michael Dowling", "email": "mtdowling@gmail.com", "homepage": "https://github.com/mtdowling" + }, + { + "name": "Jeremy Lindblom", + "email": "jeremeamia@gmail.com", + "homepage": "https://github.com/jeremeamia" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://github.com/sagikazarmark" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" } ], "description": "Guzzle is a PHP HTTP client library", @@ -578,71 +608,122 @@ "rest", "web service" ], - "time": "2019-12-23T11:57:10+00:00" + "support": { + "issues": "https://github.com/guzzle/guzzle/issues", + "source": "https://github.com/guzzle/guzzle/tree/6.5.6" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle", + "type": "tidelift" + } + ], + "time": "2022-05-25T13:19:12+00:00" }, { "name": "guzzlehttp/promises", - "version": "v1.3.1", + "version": "1.5.1", "source": { "type": "git", "url": "https://github.com/guzzle/promises.git", - "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646" + "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646", - "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646", + "url": "https://api.github.com/repos/guzzle/promises/zipball/fe752aedc9fd8fcca3fe7ad05d419d32998a06da", + "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da", "shasum": "" }, "require": { - "php": ">=5.5.0" + "php": ">=5.5" }, "require-dev": { - "phpunit/phpunit": "^4.0" + "symfony/phpunit-bridge": "^4.4 || ^5.1" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.4-dev" + "dev-master": "1.5-dev" } }, "autoload": { - "psr-4": { - "GuzzleHttp\\Promise\\": "src/" - }, "files": [ "src/functions_include.php" - ] + ], + "psr-4": { + "GuzzleHttp\\Promise\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, { "name": "Michael Dowling", "email": "mtdowling@gmail.com", "homepage": "https://github.com/mtdowling" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" } ], "description": "Guzzle promises library", "keywords": [ "promise" ], - "time": "2016-12-20T10:07:11+00:00" + "support": { + "issues": "https://github.com/guzzle/promises/issues", + "source": "https://github.com/guzzle/promises/tree/1.5.1" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises", + "type": "tidelift" + } + ], + "time": "2021-10-22T20:56:57+00:00" }, { "name": "guzzlehttp/psr7", - "version": "1.6.1", + "version": "1.8.5", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "239400de7a173fe9901b9ac7c06497751f00727a" + "reference": "337e3ad8e5716c15f9657bd214d16cc5e69df268" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a", - "reference": "239400de7a173fe9901b9ac7c06497751f00727a", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/337e3ad8e5716c15f9657bd214d16cc5e69df268", + "reference": "337e3ad8e5716c15f9657bd214d16cc5e69df268", "shasum": "" }, "require": { @@ -655,37 +736,58 @@ }, "require-dev": { "ext-zlib": "*", - "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8" + "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10" }, "suggest": { - "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses" + "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.6-dev" + "dev-master": "1.7-dev" } }, "autoload": { - "psr-4": { - "GuzzleHttp\\Psr7\\": "src/" - }, "files": [ "src/functions_include.php" - ] + ], + "psr-4": { + "GuzzleHttp\\Psr7\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, { "name": "Michael Dowling", "email": "mtdowling@gmail.com", "homepage": "https://github.com/mtdowling" }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://github.com/sagikazarmark" + }, { "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", "homepage": "https://github.com/Tobion" } ], @@ -700,7 +802,25 @@ "uri", "url" ], - "time": "2019-07-01T23:21:34+00:00" + "support": { + "issues": "https://github.com/guzzle/psr7/issues", + "source": "https://github.com/guzzle/psr7/tree/1.8.5" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7", + "type": "tidelift" + } + ], + "time": "2022-03-20T21:51:18+00:00" }, { "name": "jakub-onderka/php-console-color", @@ -1855,6 +1975,11 @@ "pseudorandom", "random" ], + "support": { + "email": "info@paragonie.com", + "issues": "https://github.com/paragonie/random_compat/issues", + "source": "https://github.com/paragonie/random_compat" + }, "time": "2018-07-02T15:55:56+00:00" }, { @@ -2153,6 +2278,9 @@ "request", "response" ], + "support": { + "source": "https://github.com/php-fig/http-message/tree/master" + }, "time": "2016-08-06T14:39:51+00:00" }, { @@ -2362,6 +2490,10 @@ } ], "description": "A polyfill for getallheaders.", + "support": { + "issues": "https://github.com/ralouphie/getallheaders/issues", + "source": "https://github.com/ralouphie/getallheaders/tree/develop" + }, "time": "2019-03-08T08:55:37+00:00" }, { @@ -3311,21 +3443,21 @@ }, { "name": "symfony/polyfill-intl-idn", - "version": "v1.14.0", + "version": "v1.25.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "6842f1a39cf7d580655688069a03dd7cd83d244a" + "reference": "749045c69efb97c70d25d7463abba812e91f3a44" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/6842f1a39cf7d580655688069a03dd7cd83d244a", - "reference": "6842f1a39cf7d580655688069a03dd7cd83d244a", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/749045c69efb97c70d25d7463abba812e91f3a44", + "reference": "749045c69efb97c70d25d7463abba812e91f3a44", "shasum": "" }, "require": { - "php": ">=5.3.3", - "symfony/polyfill-mbstring": "^1.3", + "php": ">=7.1", + "symfony/polyfill-intl-normalizer": "^1.10", "symfony/polyfill-php72": "^1.10" }, "suggest": { @@ -3334,16 +3466,20 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.14-dev" + "dev-main": "1.23-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Intl\\Idn\\": "" - }, "files": [ "bootstrap.php" - ] + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Idn\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -3354,6 +3490,10 @@ "name": "Laurent Bassin", "email": "laurent@bassin.info" }, + { + "name": "Trevor Rowbotham", + "email": "trevor.rowbotham@pm.me" + }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" @@ -3369,24 +3509,128 @@ "portable", "shim" ], - "time": "2020-01-17T12:01:36+00:00" + "support": { + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.25.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-09-14T14:02:44+00:00" + }, + { + "name": "symfony/polyfill-intl-normalizer", + "version": "v1.25.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-normalizer.git", + "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8", + "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.23-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Normalizer\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's Normalizer class and related functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "intl", + "normalizer", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.25.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-02-19T12:13:01+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.14.0", + "version": "v1.25.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "34094cfa9abe1f0f14f48f490772db7a775559f2" + "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/34094cfa9abe1f0f14f48f490772db7a775559f2", - "reference": "34094cfa9abe1f0f14f48f490772db7a775559f2", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/0abb51d2f102e00a4eefcf46ba7fec406d245825", + "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=7.1" + }, + "provide": { + "ext-mbstring": "*" }, "suggest": { "ext-mbstring": "For best performance" @@ -3394,16 +3638,20 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.14-dev" + "dev-main": "1.23-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Mbstring\\": "" - }, "files": [ "bootstrap.php" - ] + ], + "psr-4": { + "Symfony\\Polyfill\\Mbstring\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -3428,38 +3676,59 @@ "portable", "shim" ], - "time": "2020-01-13T11:15:53+00:00" + "support": { + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.25.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-11-30T18:21:41+00:00" }, { "name": "symfony/polyfill-php72", - "version": "v1.14.0", + "version": "v1.25.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php72.git", - "reference": "46ecacf4751dd0dc81e4f6bf01dbf9da1dc1dadf" + "reference": "9a142215a36a3888e30d0a9eeea9766764e96976" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/46ecacf4751dd0dc81e4f6bf01dbf9da1dc1dadf", - "reference": "46ecacf4751dd0dc81e4f6bf01dbf9da1dc1dadf", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976", + "reference": "9a142215a36a3888e30d0a9eeea9766764e96976", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=7.1" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.14-dev" + "dev-main": "1.23-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Php72\\": "" - }, "files": [ "bootstrap.php" - ] + ], + "psr-4": { + "Symfony\\Polyfill\\Php72\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -3483,7 +3752,24 @@ "portable", "shim" ], - "time": "2020-01-13T11:15:53+00:00" + "support": { + "source": "https://github.com/symfony/polyfill-php72/tree/v1.25.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-05-27T09:17:38+00:00" }, { "name": "symfony/polyfill-php73", @@ -6139,5 +6425,6 @@ "platform": { "php": "^7.2" }, - "platform-dev": [] + "platform-dev": [], + "plugin-api-version": "2.3.0" } diff --git a/tests/Feature/CategoryTest.php b/tests/Feature/CategoryTest.php index 3b3a798..b158498 100644 --- a/tests/Feature/CategoryTest.php +++ b/tests/Feature/CategoryTest.php @@ -44,8 +44,9 @@ public function test_can_get_categories_list() /** * @dataProvider typesCountProvider - * @param int $type - * @param int $count + * + * @param int $type + * @param int $count */ public function test_can_filter_categories_per_type($type, $count) {