mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
chore: bump dependencies & update project-facing docs (#240)
This commit is contained in:
+23
-29
@@ -1,52 +1,46 @@
|
|||||||
- [Assignment](#assignment)
|
|
||||||
- [Development Environment](#development-environment)
|
|
||||||
- [Feature Branch Workflow](#feature-branch-workflow)
|
|
||||||
- [Cleanup Before Pull Request](#cleanup-before-pull-request)
|
|
||||||
- [Pull Request](#pull-request)
|
|
||||||
|
|
||||||
## Assignment
|
## Assignment
|
||||||
|
|
||||||
Unless otherwise specified, any issue that does not have an assignee can be claimed by any volunteer.
|
Unless otherwise specified, any issue that does not have an assignee can be claimed by any volunteer.
|
||||||
|
|
||||||
Leave a comment in the issue indicating interest so that the assignee can be designated by a member. This is a requirement in Github to allow assignment of contributors outside of the organization by members.
|
Please leave a comment in the issue indicating interest so that you can be designated as the assignee by a member. This is a requirement in Github to allow asssignment of contributors outside of the organization by members.
|
||||||
|
|
||||||
If further discussion is needed before work can be started, please make use of the `#development` channel on the discord.
|
If further discussion is needed before work can be started, please make use of the `#design` channel on the discord.
|
||||||
|
|
||||||
## Development Environment
|
## Development Environment
|
||||||
|
|
||||||
Follow the [Installation Guide](/AnimeThemes/animethemes-server/wiki/Installation) to ensure a functional local instance of AnimeThemes forked from this repository.
|
Ensure that you have a functional local instance of AnimeThemes forked from this repository by following the [Installation Guide](https://github.com/AnimeThemes/animethemes-server/wiki/Installation).
|
||||||
|
|
||||||
Enable the forked repository in [StyleCI](https://styleci.io/) so that code styling guidelines are followed. At the time of writing, analysis is run on push and merge.
|
Enable your repository in [StyleCI](https://styleci.io/) so that code styling guidelines are followed. At the time of writing, analysis is run on push and merge.
|
||||||
|
|
||||||
Set this repository as upstream to the forked repository.
|
Set this repository as upstream to your fork.
|
||||||
|
|
||||||
`git remote add upstream https://github.com/AnimeThemes/animethemes-server.git`
|
`git remote add upstream https://github.com/AnimeThemes/animethemes-server.git`
|
||||||
|
|
||||||
Check out release branch. At the time of writing, the release branch is named `wiki`.
|
Checkout release branch.
|
||||||
|
|
||||||
`git checkout wiki`
|
`git checkout release-branch`
|
||||||
|
|
||||||
Pull upstream changes so that the local wiki branch is even with the upstream wiki branch.
|
Pull upstream changes so that your local branch is even with upstream.
|
||||||
|
|
||||||
`git pull upstream wiki`
|
`git pull upstream release-branch`
|
||||||
|
|
||||||
Push upstream changes to the forked remote wiki branch if needed.
|
Push upstream changes to your remote if needed.
|
||||||
|
|
||||||
`git push`
|
`git push`
|
||||||
|
|
||||||
## Feature Branch Workflow
|
## Feature Branch Workflow
|
||||||
|
|
||||||
Once the release branch is even with upstream, create a new feature branch from the release branch. The new feature branch name should be descriptive.
|
Once your release branch is even with upstream, create feature branch from release branch.
|
||||||
|
|
||||||
`git branch new-feature-branch`
|
`git branch new-feature-branch`
|
||||||
|
|
||||||
Switch to the new feature branch.
|
Switch to feature branch.
|
||||||
|
|
||||||
`git checkout new-feature-branch`
|
`git checkout new-feature-branch`
|
||||||
|
|
||||||
Make changes in the new feature branch. Once completed, run tests.
|
Make changes in feature branch. Once completed, run tests.
|
||||||
|
|
||||||
`php artisan config:clear && php artisan test --parallel`
|
`php artisan config:clear && php artisan test`
|
||||||
|
|
||||||
Execute static code analysis.
|
Execute static code analysis.
|
||||||
|
|
||||||
@@ -56,17 +50,17 @@ Stage changes. Commit changes. Please include ticket ID's and use [Semantic Comm
|
|||||||
|
|
||||||
## Cleanup Before Pull Request
|
## Cleanup Before Pull Request
|
||||||
|
|
||||||
Fetch the upstream release branch and merge with the fork repo's release branch.
|
Fetch upstream master and merge with your repo's master branch
|
||||||
```
|
```
|
||||||
git fetch upstream wiki
|
git fetch upstream release-branch
|
||||||
git checkout wiki
|
git checkout release-branch
|
||||||
git merge upstream/wiki
|
git merge upstream/release-branch
|
||||||
```
|
```
|
||||||
|
|
||||||
If there were any new commits, rebase the new feature branch.
|
If there were any new commits, rebase your development branch
|
||||||
```
|
```
|
||||||
git checkout new-feature-branch
|
git checkout new-feature-branch
|
||||||
git rebase wiki
|
git rebase release-branch
|
||||||
```
|
```
|
||||||
|
|
||||||
## Pull Request
|
## Pull Request
|
||||||
@@ -77,7 +71,7 @@ Push changes to remote.
|
|||||||
|
|
||||||
Confirm StyleCI passing status on push.
|
Confirm StyleCI passing status on push.
|
||||||
|
|
||||||
Create Pull Request from the new feature branch to the upstream release branch.
|
Create Pull Request from your new feature branch to upstream release branch.
|
||||||
|
|
||||||
## Pruning
|
## Pruning
|
||||||
|
|
||||||
@@ -89,11 +83,11 @@ Delete the remote feature branch.
|
|||||||
|
|
||||||
`git push origin --delete new-feature-branch`
|
`git push origin --delete new-feature-branch`
|
||||||
|
|
||||||
Pull upstream changes so that the fork release branch is even with upstream.
|
Pull upstream changes so that your local branch is even with upstream.
|
||||||
|
|
||||||
`git pull upstream release-branch`
|
`git pull upstream release-branch`
|
||||||
|
|
||||||
Push upstream changes to the fork's remote if needed.
|
Push upstream changes to your remote if needed.
|
||||||
|
|
||||||
`git push`
|
`git push`
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
MIT License
|
MIT License
|
||||||
|
|
||||||
Copyright (c) 2020 AnimeThemes
|
Copyright (c) AnimeThemes
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
|||||||
@@ -6,14 +6,18 @@
|
|||||||
<a href="https://twitter.com/AnimeThemesMoe"><img src="https://img.shields.io/twitter/follow/AnimeThemesMoe?style=social"></a>
|
<a href="https://twitter.com/AnimeThemesMoe"><img src="https://img.shields.io/twitter/follow/AnimeThemesMoe?style=social"></a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
[**AnimeThemes**](https://animethemes.moe/) is a simple and consistent repository of anime opening and ending themes. We provide direct links to high quality WebMs of your favorite OPs and EDs for your listening and discussion needs.
|
||||||
|
|
||||||
This is the repository for the server application that is responsible for AnimeThemes.moe resource management, API, and other services related to serving the AnimeThemes database.
|
This is the repository for the server application that is responsible for AnimeThemes.moe resource management, API, and other services related to serving the AnimeThemes database.
|
||||||
|
|
||||||
# Staff
|
## Installation
|
||||||
|
|
||||||
* paranarimasu ([Github](https://github.com/paranarimasu))
|
Please review the [**Installation Guide**](https://github.com/AnimeThemes/animethemes-server/wiki/Installation) in the wiki for detailed instructions.
|
||||||
* ProWeebDev ([Github](https://github.com/ProWeebDev))
|
|
||||||
* Gaporigo ([Github](https://github.com/Gaporigo))
|
|
||||||
|
|
||||||
# Installation
|
## Contributing
|
||||||
|
|
||||||
Please review the [Installation Guide](https://github.com/AnimeThemes/animethemes-server/wiki/Installation) in the wiki for detailed instructions.
|
Please review the [**Contributing Guide**](https://github.com/AnimeThemes/animethemes-server/wiki/Contributing) in the wiki for detailed instructions.
|
||||||
|
|
||||||
|
## Resources
|
||||||
|
|
||||||
|
Please make use of the #development channel in the [**Discord Server**](https://discordapp.com/invite/m9zbVyQ) for questions pertaining to the AnimeThemes database or API.
|
||||||
|
|||||||
Generated
+152
-152
@@ -64,16 +64,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "aws/aws-sdk-php",
|
"name": "aws/aws-sdk-php",
|
||||||
"version": "3.184.0",
|
"version": "3.185.6",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/aws/aws-sdk-php.git",
|
"url": "https://github.com/aws/aws-sdk-php.git",
|
||||||
"reference": "d5fa8bc58a90947cdcd08efa3f306422debaffc6"
|
"reference": "35310302912fdc3b4a0e829b84424c41e3fd9727"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/d5fa8bc58a90947cdcd08efa3f306422debaffc6",
|
"url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/35310302912fdc3b4a0e829b84424c41e3fd9727",
|
||||||
"reference": "d5fa8bc58a90947cdcd08efa3f306422debaffc6",
|
"reference": "35310302912fdc3b4a0e829b84424c41e3fd9727",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -148,9 +148,9 @@
|
|||||||
"support": {
|
"support": {
|
||||||
"forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
|
"forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
|
||||||
"issues": "https://github.com/aws/aws-sdk-php/issues",
|
"issues": "https://github.com/aws/aws-sdk-php/issues",
|
||||||
"source": "https://github.com/aws/aws-sdk-php/tree/3.184.0"
|
"source": "https://github.com/aws/aws-sdk-php/tree/3.185.6"
|
||||||
},
|
},
|
||||||
"time": "2021-06-09T18:25:48+00:00"
|
"time": "2021-07-02T18:13:18+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "brick/math",
|
"name": "brick/math",
|
||||||
@@ -283,16 +283,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "doctrine/cache",
|
"name": "doctrine/cache",
|
||||||
"version": "1.11.3",
|
"version": "2.0.3",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/doctrine/cache.git",
|
"url": "https://github.com/doctrine/cache.git",
|
||||||
"reference": "3bb5588cec00a0268829cc4a518490df6741af9d"
|
"reference": "c9622c6820d3ede1e2315a6a377ea1076e421d88"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/doctrine/cache/zipball/3bb5588cec00a0268829cc4a518490df6741af9d",
|
"url": "https://api.github.com/repos/doctrine/cache/zipball/c9622c6820d3ede1e2315a6a377ea1076e421d88",
|
||||||
"reference": "3bb5588cec00a0268829cc4a518490df6741af9d",
|
"reference": "c9622c6820d3ede1e2315a6a377ea1076e421d88",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -362,7 +362,7 @@
|
|||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/doctrine/cache/issues",
|
"issues": "https://github.com/doctrine/cache/issues",
|
||||||
"source": "https://github.com/doctrine/cache/tree/1.11.3"
|
"source": "https://github.com/doctrine/cache/tree/2.0.3"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@@ -378,38 +378,39 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-05-25T09:01:55+00:00"
|
"time": "2021-05-25T09:43:04+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "doctrine/dbal",
|
"name": "doctrine/dbal",
|
||||||
"version": "3.1.0",
|
"version": "3.1.1",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/doctrine/dbal.git",
|
"url": "https://github.com/doctrine/dbal.git",
|
||||||
"reference": "5ba62e7e40df119424866064faf2cef66cb5232a"
|
"reference": "8e0fde2b90e3f61361013d1e928621beeea07bc0"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/doctrine/dbal/zipball/5ba62e7e40df119424866064faf2cef66cb5232a",
|
"url": "https://api.github.com/repos/doctrine/dbal/zipball/8e0fde2b90e3f61361013d1e928621beeea07bc0",
|
||||||
"reference": "5ba62e7e40df119424866064faf2cef66cb5232a",
|
"reference": "8e0fde2b90e3f61361013d1e928621beeea07bc0",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
"composer/package-versions-deprecated": "^1.11.99",
|
"composer/package-versions-deprecated": "^1.11.99",
|
||||||
"doctrine/cache": "^1.0",
|
"doctrine/cache": "^1.0|^2.0",
|
||||||
"doctrine/deprecations": "^0.5.3",
|
"doctrine/deprecations": "^0.5.3",
|
||||||
"doctrine/event-manager": "^1.0",
|
"doctrine/event-manager": "^1.0",
|
||||||
"php": "^7.3 || ^8.0"
|
"php": "^7.3 || ^8.0"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"doctrine/coding-standard": "8.2.0",
|
"doctrine/coding-standard": "9.0.0",
|
||||||
"jetbrains/phpstorm-stubs": "2020.2",
|
"jetbrains/phpstorm-stubs": "2020.2",
|
||||||
"phpstan/phpstan": "0.12.81",
|
"phpstan/phpstan": "0.12.81",
|
||||||
"phpstan/phpstan-strict-rules": "^0.12.2",
|
"phpstan/phpstan-strict-rules": "^0.12.2",
|
||||||
"phpunit/phpunit": "9.5.0",
|
"phpunit/phpunit": "9.5.5",
|
||||||
"psalm/plugin-phpunit": "0.13.0",
|
"psalm/plugin-phpunit": "0.13.0",
|
||||||
"squizlabs/php_codesniffer": "3.6.0",
|
"squizlabs/php_codesniffer": "3.6.0",
|
||||||
"symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
|
"symfony/cache": "^5.2|^6.0",
|
||||||
|
"symfony/console": "^2.0.5|^3.0|^4.0|^5.0|^6.0",
|
||||||
"vimeo/psalm": "4.6.4"
|
"vimeo/psalm": "4.6.4"
|
||||||
},
|
},
|
||||||
"suggest": {
|
"suggest": {
|
||||||
@@ -470,7 +471,7 @@
|
|||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/doctrine/dbal/issues",
|
"issues": "https://github.com/doctrine/dbal/issues",
|
||||||
"source": "https://github.com/doctrine/dbal/tree/3.1.0"
|
"source": "https://github.com/doctrine/dbal/tree/3.1.1"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@@ -486,7 +487,7 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-04-19T17:51:23+00:00"
|
"time": "2021-06-19T17:59:55+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "doctrine/deprecations",
|
"name": "doctrine/deprecations",
|
||||||
@@ -1365,16 +1366,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "laravel/framework",
|
"name": "laravel/framework",
|
||||||
"version": "v8.46.0",
|
"version": "v8.49.1",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/laravel/framework.git",
|
"url": "https://github.com/laravel/framework.git",
|
||||||
"reference": "a18266c612e0e6aba5e0174b3c873d2d217dccfb"
|
"reference": "62aee1bfeefd82f160c7aa3b4c63cb2f053215c0"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/laravel/framework/zipball/a18266c612e0e6aba5e0174b3c873d2d217dccfb",
|
"url": "https://api.github.com/repos/laravel/framework/zipball/62aee1bfeefd82f160c7aa3b4c63cb2f053215c0",
|
||||||
"reference": "a18266c612e0e6aba5e0174b3c873d2d217dccfb",
|
"reference": "62aee1bfeefd82f160c7aa3b4c63cb2f053215c0",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -1453,7 +1454,7 @@
|
|||||||
"guzzlehttp/guzzle": "^6.5.5|^7.0.1",
|
"guzzlehttp/guzzle": "^6.5.5|^7.0.1",
|
||||||
"league/flysystem-cached-adapter": "^1.0",
|
"league/flysystem-cached-adapter": "^1.0",
|
||||||
"mockery/mockery": "^1.4.2",
|
"mockery/mockery": "^1.4.2",
|
||||||
"orchestra/testbench-core": "^6.8",
|
"orchestra/testbench-core": "^6.23",
|
||||||
"pda/pheanstalk": "^4.0",
|
"pda/pheanstalk": "^4.0",
|
||||||
"phpunit/phpunit": "^8.5.8|^9.3.3",
|
"phpunit/phpunit": "^8.5.8|^9.3.3",
|
||||||
"predis/predis": "^1.1.2",
|
"predis/predis": "^1.1.2",
|
||||||
@@ -1529,7 +1530,7 @@
|
|||||||
"issues": "https://github.com/laravel/framework/issues",
|
"issues": "https://github.com/laravel/framework/issues",
|
||||||
"source": "https://github.com/laravel/framework"
|
"source": "https://github.com/laravel/framework"
|
||||||
},
|
},
|
||||||
"time": "2021-06-08T13:36:46+00:00"
|
"time": "2021-07-02T16:50:12+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "laravel/tinker",
|
"name": "laravel/tinker",
|
||||||
@@ -1601,16 +1602,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "league/commonmark",
|
"name": "league/commonmark",
|
||||||
"version": "1.6.2",
|
"version": "1.6.5",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/thephpleague/commonmark.git",
|
"url": "https://github.com/thephpleague/commonmark.git",
|
||||||
"reference": "7d70d2f19c84bcc16275ea47edabee24747352eb"
|
"reference": "44ffd8d3c4a9133e4bd0548622b09c55af39db5f"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/thephpleague/commonmark/zipball/7d70d2f19c84bcc16275ea47edabee24747352eb",
|
"url": "https://api.github.com/repos/thephpleague/commonmark/zipball/44ffd8d3c4a9133e4bd0548622b09c55af39db5f",
|
||||||
"reference": "7d70d2f19c84bcc16275ea47edabee24747352eb",
|
"reference": "44ffd8d3c4a9133e4bd0548622b09c55af39db5f",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -1628,7 +1629,7 @@
|
|||||||
"github/gfm": "0.29.0",
|
"github/gfm": "0.29.0",
|
||||||
"michelf/php-markdown": "~1.4",
|
"michelf/php-markdown": "~1.4",
|
||||||
"mikehaertl/php-shellcommand": "^1.4",
|
"mikehaertl/php-shellcommand": "^1.4",
|
||||||
"phpstan/phpstan": "^0.12",
|
"phpstan/phpstan": "^0.12.90",
|
||||||
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
|
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
|
||||||
"scrutinizer/ocular": "^1.5",
|
"scrutinizer/ocular": "^1.5",
|
||||||
"symfony/finder": "^4.2"
|
"symfony/finder": "^4.2"
|
||||||
@@ -1698,20 +1699,20 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-05-12T11:39:41+00:00"
|
"time": "2021-06-26T11:57:13+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "league/flysystem",
|
"name": "league/flysystem",
|
||||||
"version": "1.1.3",
|
"version": "1.1.4",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/thephpleague/flysystem.git",
|
"url": "https://github.com/thephpleague/flysystem.git",
|
||||||
"reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
|
"reference": "f3ad69181b8afed2c9edf7be5a2918144ff4ea32"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
|
"url": "https://api.github.com/repos/thephpleague/flysystem/zipball/f3ad69181b8afed2c9edf7be5a2918144ff4ea32",
|
||||||
"reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
|
"reference": "f3ad69181b8afed2c9edf7be5a2918144ff4ea32",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -1727,7 +1728,6 @@
|
|||||||
"phpunit/phpunit": "^8.5.8"
|
"phpunit/phpunit": "^8.5.8"
|
||||||
},
|
},
|
||||||
"suggest": {
|
"suggest": {
|
||||||
"ext-fileinfo": "Required for MimeType",
|
|
||||||
"ext-ftp": "Allows you to use FTP server storage",
|
"ext-ftp": "Allows you to use FTP server storage",
|
||||||
"ext-openssl": "Allows you to use FTPS server storage",
|
"ext-openssl": "Allows you to use FTPS server storage",
|
||||||
"league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
|
"league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
|
||||||
@@ -1785,7 +1785,7 @@
|
|||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/thephpleague/flysystem/issues",
|
"issues": "https://github.com/thephpleague/flysystem/issues",
|
||||||
"source": "https://github.com/thephpleague/flysystem/tree/1.x"
|
"source": "https://github.com/thephpleague/flysystem/tree/1.1.4"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@@ -1793,7 +1793,7 @@
|
|||||||
"type": "other"
|
"type": "other"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2020-08-23T07:39:11+00:00"
|
"time": "2021-06-23T21:56:05+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "league/flysystem-aws-s3-v3",
|
"name": "league/flysystem-aws-s3-v3",
|
||||||
@@ -1904,16 +1904,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "monolog/monolog",
|
"name": "monolog/monolog",
|
||||||
"version": "2.2.0",
|
"version": "2.3.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/Seldaek/monolog.git",
|
"url": "https://github.com/Seldaek/monolog.git",
|
||||||
"reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084"
|
"reference": "df991fd88693ab703aa403413d83e15f688dae33"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/Seldaek/monolog/zipball/1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
|
"url": "https://api.github.com/repos/Seldaek/monolog/zipball/df991fd88693ab703aa403413d83e15f688dae33",
|
||||||
"reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
|
"reference": "df991fd88693ab703aa403413d83e15f688dae33",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -1932,7 +1932,7 @@
|
|||||||
"php-amqplib/php-amqplib": "~2.4",
|
"php-amqplib/php-amqplib": "~2.4",
|
||||||
"php-console/php-console": "^3.1.3",
|
"php-console/php-console": "^3.1.3",
|
||||||
"phpspec/prophecy": "^1.6.1",
|
"phpspec/prophecy": "^1.6.1",
|
||||||
"phpstan/phpstan": "^0.12.59",
|
"phpstan/phpstan": "^0.12.91",
|
||||||
"phpunit/phpunit": "^8.5",
|
"phpunit/phpunit": "^8.5",
|
||||||
"predis/predis": "^1.1",
|
"predis/predis": "^1.1",
|
||||||
"rollbar/rollbar": "^1.3",
|
"rollbar/rollbar": "^1.3",
|
||||||
@@ -1984,7 +1984,7 @@
|
|||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/Seldaek/monolog/issues",
|
"issues": "https://github.com/Seldaek/monolog/issues",
|
||||||
"source": "https://github.com/Seldaek/monolog/tree/2.2.0"
|
"source": "https://github.com/Seldaek/monolog/tree/2.3.0"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@@ -1996,20 +1996,20 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2020-12-14T13:15:25+00:00"
|
"time": "2021-07-05T11:34:13+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "mtdowling/jmespath.php",
|
"name": "mtdowling/jmespath.php",
|
||||||
"version": "2.6.0",
|
"version": "2.6.1",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/jmespath/jmespath.php.git",
|
"url": "https://github.com/jmespath/jmespath.php.git",
|
||||||
"reference": "42dae2cbd13154083ca6d70099692fef8ca84bfb"
|
"reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/42dae2cbd13154083ca6d70099692fef8ca84bfb",
|
"url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
|
||||||
"reference": "42dae2cbd13154083ca6d70099692fef8ca84bfb",
|
"reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -2017,7 +2017,7 @@
|
|||||||
"symfony/polyfill-mbstring": "^1.17"
|
"symfony/polyfill-mbstring": "^1.17"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"composer/xdebug-handler": "^1.4",
|
"composer/xdebug-handler": "^1.4 || ^2.0",
|
||||||
"phpunit/phpunit": "^4.8.36 || ^7.5.15"
|
"phpunit/phpunit": "^4.8.36 || ^7.5.15"
|
||||||
},
|
},
|
||||||
"bin": [
|
"bin": [
|
||||||
@@ -2055,22 +2055,22 @@
|
|||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/jmespath/jmespath.php/issues",
|
"issues": "https://github.com/jmespath/jmespath.php/issues",
|
||||||
"source": "https://github.com/jmespath/jmespath.php/tree/2.6.0"
|
"source": "https://github.com/jmespath/jmespath.php/tree/2.6.1"
|
||||||
},
|
},
|
||||||
"time": "2020-07-31T21:01:56+00:00"
|
"time": "2021-06-14T00:11:39+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "nesbot/carbon",
|
"name": "nesbot/carbon",
|
||||||
"version": "2.49.0",
|
"version": "2.50.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/briannesbitt/Carbon.git",
|
"url": "https://github.com/briannesbitt/Carbon.git",
|
||||||
"reference": "93d9db91c0235c486875d22f1e08b50bdf3e6eee"
|
"reference": "f47f17d17602b2243414a44ad53d9f8b9ada5fdb"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/93d9db91c0235c486875d22f1e08b50bdf3e6eee",
|
"url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/f47f17d17602b2243414a44ad53d9f8b9ada5fdb",
|
||||||
"reference": "93d9db91c0235c486875d22f1e08b50bdf3e6eee",
|
"reference": "f47f17d17602b2243414a44ad53d9f8b9ada5fdb",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -2122,15 +2122,15 @@
|
|||||||
{
|
{
|
||||||
"name": "Brian Nesbitt",
|
"name": "Brian Nesbitt",
|
||||||
"email": "brian@nesbot.com",
|
"email": "brian@nesbot.com",
|
||||||
"homepage": "http://nesbot.com"
|
"homepage": "https://markido.com"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "kylekatarnls",
|
"name": "kylekatarnls",
|
||||||
"homepage": "http://github.com/kylekatarnls"
|
"homepage": "https://github.com/kylekatarnls"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"description": "An API extension for DateTime that supports 281 different languages.",
|
"description": "An API extension for DateTime that supports 281 different languages.",
|
||||||
"homepage": "http://carbon.nesbot.com",
|
"homepage": "https://carbon.nesbot.com",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"date",
|
"date",
|
||||||
"datetime",
|
"datetime",
|
||||||
@@ -2150,20 +2150,20 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-06-02T07:31:40+00:00"
|
"time": "2021-06-28T22:38:45+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "nikic/php-parser",
|
"name": "nikic/php-parser",
|
||||||
"version": "v4.10.5",
|
"version": "v4.11.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/nikic/PHP-Parser.git",
|
"url": "https://github.com/nikic/PHP-Parser.git",
|
||||||
"reference": "4432ba399e47c66624bc73c8c0f811e5c109576f"
|
"reference": "fe14cf3672a149364fb66dfe11bf6549af899f94"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4432ba399e47c66624bc73c8c0f811e5c109576f",
|
"url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/fe14cf3672a149364fb66dfe11bf6549af899f94",
|
||||||
"reference": "4432ba399e47c66624bc73c8c0f811e5c109576f",
|
"reference": "fe14cf3672a149364fb66dfe11bf6549af899f94",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -2204,9 +2204,9 @@
|
|||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/nikic/PHP-Parser/issues",
|
"issues": "https://github.com/nikic/PHP-Parser/issues",
|
||||||
"source": "https://github.com/nikic/PHP-Parser/tree/v4.10.5"
|
"source": "https://github.com/nikic/PHP-Parser/tree/v4.11.0"
|
||||||
},
|
},
|
||||||
"time": "2021-05-03T19:11:20+00:00"
|
"time": "2021-07-03T13:36:55+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "opis/closure",
|
"name": "opis/closure",
|
||||||
@@ -3011,16 +3011,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/console",
|
"name": "symfony/console",
|
||||||
"version": "v5.3.0",
|
"version": "v5.3.2",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/console.git",
|
"url": "https://github.com/symfony/console.git",
|
||||||
"reference": "058553870f7809087fa80fa734704a21b9bcaeb2"
|
"reference": "649730483885ff2ca99ca0560ef0e5f6b03f2ac1"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/console/zipball/058553870f7809087fa80fa734704a21b9bcaeb2",
|
"url": "https://api.github.com/repos/symfony/console/zipball/649730483885ff2ca99ca0560ef0e5f6b03f2ac1",
|
||||||
"reference": "058553870f7809087fa80fa734704a21b9bcaeb2",
|
"reference": "649730483885ff2ca99ca0560ef0e5f6b03f2ac1",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -3089,7 +3089,7 @@
|
|||||||
"terminal"
|
"terminal"
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/console/tree/v5.3.0"
|
"source": "https://github.com/symfony/console/tree/v5.3.2"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@@ -3105,7 +3105,7 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-05-26T17:43:10+00:00"
|
"time": "2021-06-12T09:42:48+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/css-selector",
|
"name": "symfony/css-selector",
|
||||||
@@ -3241,16 +3241,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/error-handler",
|
"name": "symfony/error-handler",
|
||||||
"version": "v5.3.0",
|
"version": "v5.3.3",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/error-handler.git",
|
"url": "https://github.com/symfony/error-handler.git",
|
||||||
"reference": "0e6768b8c0dcef26df087df2bbbaa143867a59b2"
|
"reference": "43323e79c80719e8a4674e33484bca98270d223f"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/error-handler/zipball/0e6768b8c0dcef26df087df2bbbaa143867a59b2",
|
"url": "https://api.github.com/repos/symfony/error-handler/zipball/43323e79c80719e8a4674e33484bca98270d223f",
|
||||||
"reference": "0e6768b8c0dcef26df087df2bbbaa143867a59b2",
|
"reference": "43323e79c80719e8a4674e33484bca98270d223f",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -3290,7 +3290,7 @@
|
|||||||
"description": "Provides tools to manage errors and ease debugging PHP code",
|
"description": "Provides tools to manage errors and ease debugging PHP code",
|
||||||
"homepage": "https://symfony.com",
|
"homepage": "https://symfony.com",
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/error-handler/tree/v5.3.0"
|
"source": "https://github.com/symfony/error-handler/tree/v5.3.3"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@@ -3306,7 +3306,7 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-05-26T17:43:10+00:00"
|
"time": "2021-06-24T08:13:00+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/event-dispatcher",
|
"name": "symfony/event-dispatcher",
|
||||||
@@ -3613,16 +3613,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/http-foundation",
|
"name": "symfony/http-foundation",
|
||||||
"version": "v5.3.1",
|
"version": "v5.3.3",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/http-foundation.git",
|
"url": "https://github.com/symfony/http-foundation.git",
|
||||||
"reference": "8827b90cf8806e467124ad476acd15216c2fceb6"
|
"reference": "0e45ab1574caa0460d9190871a8ce47539e40ccf"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/http-foundation/zipball/8827b90cf8806e467124ad476acd15216c2fceb6",
|
"url": "https://api.github.com/repos/symfony/http-foundation/zipball/0e45ab1574caa0460d9190871a8ce47539e40ccf",
|
||||||
"reference": "8827b90cf8806e467124ad476acd15216c2fceb6",
|
"reference": "0e45ab1574caa0460d9190871a8ce47539e40ccf",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -3666,7 +3666,7 @@
|
|||||||
"description": "Defines an object-oriented layer for the HTTP specification",
|
"description": "Defines an object-oriented layer for the HTTP specification",
|
||||||
"homepage": "https://symfony.com",
|
"homepage": "https://symfony.com",
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/http-foundation/tree/v5.3.1"
|
"source": "https://github.com/symfony/http-foundation/tree/v5.3.3"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@@ -3682,20 +3682,20 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-06-02T09:32:00+00:00"
|
"time": "2021-06-27T09:19:40+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/http-kernel",
|
"name": "symfony/http-kernel",
|
||||||
"version": "v5.3.1",
|
"version": "v5.3.3",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/http-kernel.git",
|
"url": "https://github.com/symfony/http-kernel.git",
|
||||||
"reference": "74eb022e3bac36b3d3a897951a98759f2b32b864"
|
"reference": "90ad9f4b21ddcb8ebe9faadfcca54929ad23f9f8"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/http-kernel/zipball/74eb022e3bac36b3d3a897951a98759f2b32b864",
|
"url": "https://api.github.com/repos/symfony/http-kernel/zipball/90ad9f4b21ddcb8ebe9faadfcca54929ad23f9f8",
|
||||||
"reference": "74eb022e3bac36b3d3a897951a98759f2b32b864",
|
"reference": "90ad9f4b21ddcb8ebe9faadfcca54929ad23f9f8",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -3778,7 +3778,7 @@
|
|||||||
"description": "Provides a structured process for converting a Request into a Response",
|
"description": "Provides a structured process for converting a Request into a Response",
|
||||||
"homepage": "https://symfony.com",
|
"homepage": "https://symfony.com",
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/http-kernel/tree/v5.3.1"
|
"source": "https://github.com/symfony/http-kernel/tree/v5.3.3"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@@ -3794,20 +3794,20 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-06-02T10:07:12+00:00"
|
"time": "2021-06-30T08:27:49+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/mime",
|
"name": "symfony/mime",
|
||||||
"version": "v5.3.0",
|
"version": "v5.3.2",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/mime.git",
|
"url": "https://github.com/symfony/mime.git",
|
||||||
"reference": "ed710d297b181f6a7194d8172c9c2423d58e4852"
|
"reference": "47dd7912152b82d0d4c8d9040dbc93d6232d472a"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/mime/zipball/ed710d297b181f6a7194d8172c9c2423d58e4852",
|
"url": "https://api.github.com/repos/symfony/mime/zipball/47dd7912152b82d0d4c8d9040dbc93d6232d472a",
|
||||||
"reference": "ed710d297b181f6a7194d8172c9c2423d58e4852",
|
"reference": "47dd7912152b82d0d4c8d9040dbc93d6232d472a",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -3861,7 +3861,7 @@
|
|||||||
"mime-type"
|
"mime-type"
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/mime/tree/v5.3.0"
|
"source": "https://github.com/symfony/mime/tree/v5.3.2"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@@ -3877,7 +3877,7 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-05-26T17:43:10+00:00"
|
"time": "2021-06-09T10:58:01+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/polyfill-ctype",
|
"name": "symfony/polyfill-ctype",
|
||||||
@@ -4610,16 +4610,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/process",
|
"name": "symfony/process",
|
||||||
"version": "v5.3.0",
|
"version": "v5.3.2",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/process.git",
|
"url": "https://github.com/symfony/process.git",
|
||||||
"reference": "53e36cb1c160505cdaf1ef201501669c4c317191"
|
"reference": "714b47f9196de61a196d86c4bad5f09201b307df"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/process/zipball/53e36cb1c160505cdaf1ef201501669c4c317191",
|
"url": "https://api.github.com/repos/symfony/process/zipball/714b47f9196de61a196d86c4bad5f09201b307df",
|
||||||
"reference": "53e36cb1c160505cdaf1ef201501669c4c317191",
|
"reference": "714b47f9196de61a196d86c4bad5f09201b307df",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -4652,7 +4652,7 @@
|
|||||||
"description": "Executes commands in sub-processes",
|
"description": "Executes commands in sub-processes",
|
||||||
"homepage": "https://symfony.com",
|
"homepage": "https://symfony.com",
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/process/tree/v5.3.0"
|
"source": "https://github.com/symfony/process/tree/v5.3.2"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@@ -4668,7 +4668,7 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-05-26T12:52:38+00:00"
|
"time": "2021-06-12T10:15:01+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/routing",
|
"name": "symfony/routing",
|
||||||
@@ -4841,16 +4841,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/string",
|
"name": "symfony/string",
|
||||||
"version": "v5.3.0",
|
"version": "v5.3.3",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/string.git",
|
"url": "https://github.com/symfony/string.git",
|
||||||
"reference": "a9a0f8b6aafc5d2d1c116dcccd1573a95153515b"
|
"reference": "bd53358e3eccec6a670b5f33ab680d8dbe1d4ae1"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/string/zipball/a9a0f8b6aafc5d2d1c116dcccd1573a95153515b",
|
"url": "https://api.github.com/repos/symfony/string/zipball/bd53358e3eccec6a670b5f33ab680d8dbe1d4ae1",
|
||||||
"reference": "a9a0f8b6aafc5d2d1c116dcccd1573a95153515b",
|
"reference": "bd53358e3eccec6a670b5f33ab680d8dbe1d4ae1",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -4904,7 +4904,7 @@
|
|||||||
"utf8"
|
"utf8"
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/string/tree/v5.3.0"
|
"source": "https://github.com/symfony/string/tree/v5.3.3"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@@ -4920,20 +4920,20 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-05-26T17:43:10+00:00"
|
"time": "2021-06-27T11:44:38+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/translation",
|
"name": "symfony/translation",
|
||||||
"version": "v5.3.0",
|
"version": "v5.3.3",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/translation.git",
|
"url": "https://github.com/symfony/translation.git",
|
||||||
"reference": "251de0d921c42ef0a81494d8f37405421deefdf6"
|
"reference": "380b8c9e944d0e364b25f28e8e555241eb49c01c"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/translation/zipball/251de0d921c42ef0a81494d8f37405421deefdf6",
|
"url": "https://api.github.com/repos/symfony/translation/zipball/380b8c9e944d0e364b25f28e8e555241eb49c01c",
|
||||||
"reference": "251de0d921c42ef0a81494d8f37405421deefdf6",
|
"reference": "380b8c9e944d0e364b25f28e8e555241eb49c01c",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -4999,7 +4999,7 @@
|
|||||||
"description": "Provides tools to internationalize your application",
|
"description": "Provides tools to internationalize your application",
|
||||||
"homepage": "https://symfony.com",
|
"homepage": "https://symfony.com",
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/translation/tree/v5.3.0"
|
"source": "https://github.com/symfony/translation/tree/v5.3.3"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@@ -5015,7 +5015,7 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-05-29T22:28:28+00:00"
|
"time": "2021-06-27T12:22:47+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/translation-contracts",
|
"name": "symfony/translation-contracts",
|
||||||
@@ -5097,16 +5097,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/var-dumper",
|
"name": "symfony/var-dumper",
|
||||||
"version": "v5.3.0",
|
"version": "v5.3.3",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/var-dumper.git",
|
"url": "https://github.com/symfony/var-dumper.git",
|
||||||
"reference": "1d3953e627fe4b5f6df503f356b6545ada6351f3"
|
"reference": "46aa709affb9ad3355bd7a810f9662d71025c384"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/symfony/var-dumper/zipball/1d3953e627fe4b5f6df503f356b6545ada6351f3",
|
"url": "https://api.github.com/repos/symfony/var-dumper/zipball/46aa709affb9ad3355bd7a810f9662d71025c384",
|
||||||
"reference": "1d3953e627fe4b5f6df503f356b6545ada6351f3",
|
"reference": "46aa709affb9ad3355bd7a810f9662d71025c384",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -5165,7 +5165,7 @@
|
|||||||
"dump"
|
"dump"
|
||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"source": "https://github.com/symfony/var-dumper/tree/v5.3.0"
|
"source": "https://github.com/symfony/var-dumper/tree/v5.3.3"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@@ -5181,7 +5181,7 @@
|
|||||||
"type": "tidelift"
|
"type": "tidelift"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-05-27T12:28:50+00:00"
|
"time": "2021-06-24T08:13:00+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "tijsverkoyen/css-to-inline-styles",
|
"name": "tijsverkoyen/css-to-inline-styles",
|
||||||
@@ -5586,16 +5586,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "facade/ignition",
|
"name": "facade/ignition",
|
||||||
"version": "2.10.1",
|
"version": "2.10.2",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/facade/ignition.git",
|
"url": "https://github.com/facade/ignition.git",
|
||||||
"reference": "508d80f91de953617977e5666f8953669b6e81f2"
|
"reference": "43688227bbf27c43bc1ad83af224f135b6ef0ff4"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/facade/ignition/zipball/508d80f91de953617977e5666f8953669b6e81f2",
|
"url": "https://api.github.com/repos/facade/ignition/zipball/43688227bbf27c43bc1ad83af224f135b6ef0ff4",
|
||||||
"reference": "508d80f91de953617977e5666f8953669b6e81f2",
|
"reference": "43688227bbf27c43bc1ad83af224f135b6ef0ff4",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -5659,7 +5659,7 @@
|
|||||||
"issues": "https://github.com/facade/ignition/issues",
|
"issues": "https://github.com/facade/ignition/issues",
|
||||||
"source": "https://github.com/facade/ignition"
|
"source": "https://github.com/facade/ignition"
|
||||||
},
|
},
|
||||||
"time": "2021-06-03T21:41:42+00:00"
|
"time": "2021-06-11T06:57:25+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "facade/ignition-contracts",
|
"name": "facade/ignition-contracts",
|
||||||
@@ -6023,16 +6023,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "nunomaduro/collision",
|
"name": "nunomaduro/collision",
|
||||||
"version": "v5.4.0",
|
"version": "v5.5.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/nunomaduro/collision.git",
|
"url": "https://github.com/nunomaduro/collision.git",
|
||||||
"reference": "41b7e9999133d5082700d31a1d0977161df8322a"
|
"reference": "b5cb36122f1c142c3c3ee20a0ae778439ef0244b"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/nunomaduro/collision/zipball/41b7e9999133d5082700d31a1d0977161df8322a",
|
"url": "https://api.github.com/repos/nunomaduro/collision/zipball/b5cb36122f1c142c3c3ee20a0ae778439ef0244b",
|
||||||
"reference": "41b7e9999133d5082700d31a1d0977161df8322a",
|
"reference": "b5cb36122f1c142c3c3ee20a0ae778439ef0244b",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -6107,7 +6107,7 @@
|
|||||||
"type": "patreon"
|
"type": "patreon"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-04-09T13:38:32+00:00"
|
"time": "2021-06-22T20:47:22+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "phar-io/manifest",
|
"name": "phar-io/manifest",
|
||||||
@@ -6765,16 +6765,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "phpunit/phpunit",
|
"name": "phpunit/phpunit",
|
||||||
"version": "9.5.5",
|
"version": "9.5.6",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/sebastianbergmann/phpunit.git",
|
"url": "https://github.com/sebastianbergmann/phpunit.git",
|
||||||
"reference": "89ff45ea9d70e35522fb6654a2ebc221158de276"
|
"reference": "fb9b8333f14e3dce976a60ef6a7e05c7c7ed8bfb"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/89ff45ea9d70e35522fb6654a2ebc221158de276",
|
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/fb9b8333f14e3dce976a60ef6a7e05c7c7ed8bfb",
|
||||||
"reference": "89ff45ea9d70e35522fb6654a2ebc221158de276",
|
"reference": "fb9b8333f14e3dce976a60ef6a7e05c7c7ed8bfb",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -6804,7 +6804,7 @@
|
|||||||
"sebastian/global-state": "^5.0.1",
|
"sebastian/global-state": "^5.0.1",
|
||||||
"sebastian/object-enumerator": "^4.0.3",
|
"sebastian/object-enumerator": "^4.0.3",
|
||||||
"sebastian/resource-operations": "^3.0.3",
|
"sebastian/resource-operations": "^3.0.3",
|
||||||
"sebastian/type": "^2.3.2",
|
"sebastian/type": "^2.3.4",
|
||||||
"sebastian/version": "^3.0.2"
|
"sebastian/version": "^3.0.2"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
@@ -6852,7 +6852,7 @@
|
|||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/sebastianbergmann/phpunit/issues",
|
"issues": "https://github.com/sebastianbergmann/phpunit/issues",
|
||||||
"source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.5"
|
"source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.6"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@@ -6864,7 +6864,7 @@
|
|||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-06-05T04:49:07+00:00"
|
"time": "2021-06-23T05:14:38+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "sebastian/cli-parser",
|
"name": "sebastian/cli-parser",
|
||||||
@@ -7372,16 +7372,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "sebastian/global-state",
|
"name": "sebastian/global-state",
|
||||||
"version": "5.0.2",
|
"version": "5.0.3",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/sebastianbergmann/global-state.git",
|
"url": "https://github.com/sebastianbergmann/global-state.git",
|
||||||
"reference": "a90ccbddffa067b51f574dea6eb25d5680839455"
|
"reference": "23bd5951f7ff26f12d4e3242864df3e08dec4e49"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/a90ccbddffa067b51f574dea6eb25d5680839455",
|
"url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/23bd5951f7ff26f12d4e3242864df3e08dec4e49",
|
||||||
"reference": "a90ccbddffa067b51f574dea6eb25d5680839455",
|
"reference": "23bd5951f7ff26f12d4e3242864df3e08dec4e49",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -7424,7 +7424,7 @@
|
|||||||
],
|
],
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/sebastianbergmann/global-state/issues",
|
"issues": "https://github.com/sebastianbergmann/global-state/issues",
|
||||||
"source": "https://github.com/sebastianbergmann/global-state/tree/5.0.2"
|
"source": "https://github.com/sebastianbergmann/global-state/tree/5.0.3"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@@ -7432,7 +7432,7 @@
|
|||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2020-10-26T15:55:19+00:00"
|
"time": "2021-06-11T13:31:12+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "sebastian/lines-of-code",
|
"name": "sebastian/lines-of-code",
|
||||||
@@ -7723,16 +7723,16 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "sebastian/type",
|
"name": "sebastian/type",
|
||||||
"version": "2.3.2",
|
"version": "2.3.4",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/sebastianbergmann/type.git",
|
"url": "https://github.com/sebastianbergmann/type.git",
|
||||||
"reference": "0d1c587401514d17e8f9258a27e23527cb1b06c1"
|
"reference": "b8cd8a1c753c90bc1a0f5372170e3e489136f914"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/sebastianbergmann/type/zipball/0d1c587401514d17e8f9258a27e23527cb1b06c1",
|
"url": "https://api.github.com/repos/sebastianbergmann/type/zipball/b8cd8a1c753c90bc1a0f5372170e3e489136f914",
|
||||||
"reference": "0d1c587401514d17e8f9258a27e23527cb1b06c1",
|
"reference": "b8cd8a1c753c90bc1a0f5372170e3e489136f914",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@@ -7767,7 +7767,7 @@
|
|||||||
"homepage": "https://github.com/sebastianbergmann/type",
|
"homepage": "https://github.com/sebastianbergmann/type",
|
||||||
"support": {
|
"support": {
|
||||||
"issues": "https://github.com/sebastianbergmann/type/issues",
|
"issues": "https://github.com/sebastianbergmann/type/issues",
|
||||||
"source": "https://github.com/sebastianbergmann/type/tree/2.3.2"
|
"source": "https://github.com/sebastianbergmann/type/tree/2.3.4"
|
||||||
},
|
},
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
@@ -7775,7 +7775,7 @@
|
|||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"time": "2021-06-04T13:02:07+00:00"
|
"time": "2021-06-15T12:49:02+00:00"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "sebastian/version",
|
"name": "sebastian/version",
|
||||||
|
|||||||
Generated
+1241
-11700
File diff suppressed because it is too large
Load Diff
+3
-3
@@ -12,10 +12,10 @@
|
|||||||
"cross-env": "^7.0.3",
|
"cross-env": "^7.0.3",
|
||||||
"laravel-mix": "^6.0.19",
|
"laravel-mix": "^6.0.19",
|
||||||
"lodash": "^4.17.21",
|
"lodash": "^4.17.21",
|
||||||
"postcss": "^8.3.1",
|
"postcss": "^8.3.5",
|
||||||
"resolve-url-loader": "^4.0.0",
|
"resolve-url-loader": "^4.0.0",
|
||||||
"sass": "^1.34.1",
|
"sass": "^1.35.1",
|
||||||
"sass-loader": "^12.0.0"
|
"sass-loader": "^12.1.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"jquery": "^3.6.0",
|
"jquery": "^3.6.0",
|
||||||
|
|||||||
Reference in New Issue
Block a user