Compare commits

..

3 Commits

Author SHA1 Message Date
Ronald A. Richardson
bcb1470138 Added IAM Extension + Important bug fixes 2023-07-06 22:15:20 +08:00
Ronald A. Richardson
a5892a1cc4 updated github workflow for a discord announcement 2023-06-30 13:04:34 +08:00
Ronald A. Richardson
80c621d020 Added Branding Settings to Admin section 2023-06-30 11:36:14 +08:00
14 changed files with 169 additions and 161 deletions

View File

@@ -2,9 +2,9 @@ name: Discord Announcement
on:
push:
branches: [main]
tags:
- "v*"
jobs:
discord_announcement:
runs-on: ubuntu-latest
@@ -13,15 +13,36 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2
with:
fetch-depth: 0 # this is required to fetch all tags
fetch-depth: 0
- name: Get tag message
id: tag
run: echo "::set-output name=message::$(git for-each-ref refs/tags --format='%(contents)' ${{ github.ref }})"
run: |
echo "::set-output name=version::$(git describe --tags --abbrev=0)"
if [[ "${ACT}" == "true" ]]; then
# If running with act, use an environment variable for the tag message
echo "::set-output name=message::$(echo -e "${TAG_MESSAGE}" | base64)"
else
# If running on GitHub, use git to get the tag message
echo "::set-output name=message::$(git tag -l --format='%(contents)' $(git describe --tags --abbrev=0) | base64)"
fi
- name: Print tag message
run: echo "${{ steps.tag.outputs.message }}"
- name: Get tag name
id: get_tag
run: echo "::set-output name=tag::${GITHUB_REF/refs\/tags\//}"
- name: Decode message
id: decode
run: |
echo "Decoding message..."
echo "::set-output name=message::$(echo '${{ steps.tag.outputs.message }}' | base64 --decode)"
- name: Send message to Discord
uses: tsickert/discord-webhook@v5.3.0
with:
webhook-url: ${{ secrets.DISCORD_WEBHOOK_URL }}
content: "@everyone 📦 New Fleetbase Version ${{ steps.tag.outputs.tag }} Released! 🎉 \n ${{ steps.tag.outputs.message }} \n Version: ${{ steps.tag.outputs.tag }} \n [Release Notes](https://github.com/fleetbase/fleetbase/releases/tag/${{ steps.tag.outputs.tag }})"
username: Fleetbase
content: "@everyone \n📦 New Fleetbase Version ${{ steps.get_tag.outputs.tag }} Released!\n${{ steps.decode.outputs.message }} \nVersion: ${{ steps.get_tag.outputs.tag }} \n[Release Notes for ${{ steps.get_tag.outputs.tag }}](https://github.com/fleetbase/fleetbase/releases/tag/${{ steps.get_tag.outputs.tag }})"
username: Fleetbase

View File

@@ -1,2 +1,7 @@
#!/bin/bash
if [ -f composer.lock ]; then
rm composer.lock
fi
mv composer.json composer.prod.json && mv composer.dev.json composer.json && composer install && mv composer.json composer.dev.json && mv composer.prod.json composer.json

View File

@@ -6,7 +6,7 @@
"license": "MIT",
"require": {
"php": "^7.3|^8.0",
"fleetbase/core-api": "^1.1.0-alpha",
"fleetbase/core-api": "^1.1.1-alpha",
"fleetbase/fleetops-api": "^1.0.5-alpha",
"fleetbase/storefront-api": "^1.0.4-alpha",
"fruitcake/laravel-cors": "^2.0",
@@ -57,38 +57,15 @@
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
],
"clear-logs": [
"rm -rf storage/logs/*.log",
"composer dump-autoload",
"chmod -R 777 storage",
"chmod -R 777 bootstrap/cache",
"chmod -R 777 resources"
],
"clean-logs": [
"composer run-script clear-logs"
],
"dock": [
"docker exec -it fleetbase_os_application_1 /usr/bin/tmux -u new"
],
"dock-server": [
"docker exec -it fleetbase_os_httpd_1 /bin/sh"
],
"tunnel": [
"ngrok http --region=ap --hostname=fleetbase.ap.ngrok.io 8000"
]
"post-autoload-dump": ["Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", "@php artisan package:discover --ansi"],
"post-update-cmd": ["@php artisan vendor:publish --tag=laravel-assets --ansi --force"],
"post-root-package-install": ["@php -r \"file_exists('.env') || copy('.env.example', '.env');\""],
"post-create-project-cmd": ["@php artisan key:generate --ansi"],
"clear-logs": ["rm -rf storage/logs/*.log", "composer dump-autoload", "chmod -R 777 storage", "chmod -R 777 bootstrap/cache", "chmod -R 777 resources"],
"clean-logs": ["composer run-script clear-logs"],
"dock": ["docker exec -it fleetbase_os_application_1 /usr/bin/tmux -u new"],
"dock-server": ["docker exec -it fleetbase_os_httpd_1 /bin/sh"],
"tunnel": ["ngrok http --region=ap --hostname=fleetbase.ap.ngrok.io 8000"]
},
"extra": {
"laravel": {

View File

@@ -2,13 +2,16 @@
"name": "laravel/laravel",
"type": "project",
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"require": {
"php": "^7.3|^8.0",
"fleetbase/core-api": "^1.1.0-alpha",
"fleetbase/fleetops-api": "^1.0.5-alpha",
"fleetbase/storefront-api": "^1.0.4-alpha",
"fleetbase/core-api": "^1.1.2-alpha",
"fleetbase/fleetops-api": "^1.0.6-alpha",
"fleetbase/storefront-api": "^1.0.5-alpha",
"fruitcake/laravel-cors": "^2.0",
"guzzlehttp/guzzle": "^7.0.1",
"laravel/framework": "^8.75",

222
api/composer.lock generated
View File

@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "cebc71c12d687c61d84f862dcce19abc",
"content-hash": "856cd878eb92ddb0b3fb98d8e1069ce8",
"packages": [
{
"name": "aloha/twilio",
@@ -192,16 +192,16 @@
},
{
"name": "aws/aws-sdk-php",
"version": "3.273.2",
"version": "3.275.3",
"source": {
"type": "git",
"url": "https://github.com/aws/aws-sdk-php.git",
"reference": "10631467bdf9869a45197a25b490948af2ef7acd"
"reference": "bbdf8e8d5df0b44ee83d5a751f316fc9f9dd2849"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/10631467bdf9869a45197a25b490948af2ef7acd",
"reference": "10631467bdf9869a45197a25b490948af2ef7acd",
"url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/bbdf8e8d5df0b44ee83d5a751f316fc9f9dd2849",
"reference": "bbdf8e8d5df0b44ee83d5a751f316fc9f9dd2849",
"shasum": ""
},
"require": {
@@ -281,9 +281,9 @@
"support": {
"forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
"issues": "https://github.com/aws/aws-sdk-php/issues",
"source": "https://github.com/aws/aws-sdk-php/tree/3.273.2"
"source": "https://github.com/aws/aws-sdk-php/tree/3.275.3"
},
"time": "2023-06-16T18:53:48+00:00"
"time": "2023-07-05T18:22:08+00:00"
},
{
"name": "aws/aws-sdk-php-laravel",
@@ -1939,16 +1939,16 @@
},
{
"name": "firebase/php-jwt",
"version": "v6.7.0",
"version": "v6.8.0",
"source": {
"type": "git",
"url": "https://github.com/firebase/php-jwt.git",
"reference": "71278f20b0a623389beefe87a641d03948a38870"
"reference": "48b0210c51718d682e53210c24d25c5a10a2299b"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/firebase/php-jwt/zipball/71278f20b0a623389beefe87a641d03948a38870",
"reference": "71278f20b0a623389beefe87a641d03948a38870",
"url": "https://api.github.com/repos/firebase/php-jwt/zipball/48b0210c51718d682e53210c24d25c5a10a2299b",
"reference": "48b0210c51718d682e53210c24d25c5a10a2299b",
"shasum": ""
},
"require": {
@@ -1996,22 +1996,22 @@
],
"support": {
"issues": "https://github.com/firebase/php-jwt/issues",
"source": "https://github.com/firebase/php-jwt/tree/v6.7.0"
"source": "https://github.com/firebase/php-jwt/tree/v6.8.0"
},
"time": "2023-06-14T15:29:26+00:00"
"time": "2023-06-20T16:45:35+00:00"
},
{
"name": "fleetbase/core-api",
"version": "1.1.0-alpha",
"version": "1.1.2-alpha",
"source": {
"type": "git",
"url": "https://github.com/fleetbase/core-api.git",
"reference": "984225fad9707d486c66c32fa8985112844a7bff"
"reference": "d0715ae4919bde139cf36714a20ee6bca164e61c"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/fleetbase/core-api/zipball/984225fad9707d486c66c32fa8985112844a7bff",
"reference": "984225fad9707d486c66c32fa8985112844a7bff",
"url": "https://api.github.com/repos/fleetbase/core-api/zipball/d0715ae4919bde139cf36714a20ee6bca164e61c",
"reference": "d0715ae4919bde139cf36714a20ee6bca164e61c",
"shasum": ""
},
"require": {
@@ -2085,22 +2085,22 @@
],
"support": {
"issues": "https://github.com/fleetbase/core-api/issues",
"source": "https://github.com/fleetbase/core-api/tree/v1.1.0-alpha"
"source": "https://github.com/fleetbase/core-api/tree/v1.1.2-alpha"
},
"time": "2023-06-14T08:08:04+00:00"
"time": "2023-07-06T13:57:49+00:00"
},
{
"name": "fleetbase/fleetops-api",
"version": "1.0.5-alpha",
"version": "1.0.6-alpha",
"source": {
"type": "git",
"url": "https://github.com/fleetbase/fleetops-api.git",
"reference": "82deaeaa8f185dc4a9760e8de279ad0606c13c2a"
"reference": "02238ff3be00b0329b1cb99b1bea844b0936a523"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/fleetbase/fleetops-api/zipball/82deaeaa8f185dc4a9760e8de279ad0606c13c2a",
"reference": "82deaeaa8f185dc4a9760e8de279ad0606c13c2a",
"url": "https://api.github.com/repos/fleetbase/fleetops-api/zipball/02238ff3be00b0329b1cb99b1bea844b0936a523",
"reference": "02238ff3be00b0329b1cb99b1bea844b0936a523",
"shasum": ""
},
"require": {
@@ -2155,28 +2155,29 @@
"description": "FleetOps TMS and Last-Mile Operations System",
"keywords": [
"delivery management",
"fleetbase-extension",
"fleetops",
"last-mile",
"tms"
],
"support": {
"issues": "https://github.com/fleetbase/fleetops-api/issues",
"source": "https://github.com/fleetbase/fleetops-api/tree/v1.0.5-alpha"
"source": "https://github.com/fleetbase/fleetops-api/tree/v1.0.6-alpha"
},
"time": "2023-06-19T09:18:30+00:00"
"time": "2023-07-06T13:58:31+00:00"
},
{
"name": "fleetbase/storefront-api",
"version": "1.0.4-alpha",
"version": "1.0.5-alpha",
"source": {
"type": "git",
"url": "https://github.com/fleetbase/storefront-api.git",
"reference": "03e7a5bf751fadc9b2a8c2b12b23d65e1485074c"
"reference": "59ceacc658a919303c6d4092c5572f41fd131d54"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/fleetbase/storefront-api/zipball/03e7a5bf751fadc9b2a8c2b12b23d65e1485074c",
"reference": "03e7a5bf751fadc9b2a8c2b12b23d65e1485074c",
"url": "https://api.github.com/repos/fleetbase/storefront-api/zipball/59ceacc658a919303c6d4092c5572f41fd131d54",
"reference": "59ceacc658a919303c6d4092c5572f41fd131d54",
"shasum": ""
},
"require": {
@@ -2233,15 +2234,16 @@
"description": "Headless Commerce API for Storefront Fleetbase Extension.",
"keywords": [
"e-commerce",
"fleetbase-extension",
"headless commerce",
"marketplace",
"storefront"
],
"support": {
"issues": "https://github.com/fleetbase/storefront-api/issues",
"source": "https://github.com/fleetbase/storefront-api/tree/v1.0.4-alpha"
"source": "https://github.com/fleetbase/storefront-api/tree/v1.0.5-alpha"
},
"time": "2023-06-14T08:24:27+00:00"
"time": "2023-07-06T14:02:36+00:00"
},
{
"name": "fruitcake/laravel-cors",
@@ -2723,16 +2725,16 @@
},
{
"name": "giggsey/libphonenumber-for-php",
"version": "8.13.14",
"version": "8.13.15",
"source": {
"type": "git",
"url": "https://github.com/giggsey/libphonenumber-for-php.git",
"reference": "31b94ef2aa349b76bb725f375e9cfa2e398a1620"
"reference": "b294846e26ea985e6b1fbdfaf15387daca60c2de"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/31b94ef2aa349b76bb725f375e9cfa2e398a1620",
"reference": "31b94ef2aa349b76bb725f375e9cfa2e398a1620",
"url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/b294846e26ea985e6b1fbdfaf15387daca60c2de",
"reference": "b294846e26ea985e6b1fbdfaf15387daca60c2de",
"shasum": ""
},
"require": {
@@ -2791,7 +2793,7 @@
"issues": "https://github.com/giggsey/libphonenumber-for-php/issues",
"source": "https://github.com/giggsey/libphonenumber-for-php"
},
"time": "2023-06-13T08:08:40+00:00"
"time": "2023-06-23T07:47:45+00:00"
},
{
"name": "giggsey/locale",
@@ -2907,26 +2909,26 @@
},
{
"name": "google/cloud-core",
"version": "v1.51.2",
"version": "v1.52.0",
"source": {
"type": "git",
"url": "https://github.com/googleapis/google-cloud-php-core.git",
"reference": "85dc48d62143f4bbfaa34c24da95003371de7b79"
"reference": "bd87e418923e0d836c7e754d82e66bc0b79964ab"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/googleapis/google-cloud-php-core/zipball/85dc48d62143f4bbfaa34c24da95003371de7b79",
"reference": "85dc48d62143f4bbfaa34c24da95003371de7b79",
"url": "https://api.github.com/repos/googleapis/google-cloud-php-core/zipball/bd87e418923e0d836c7e754d82e66bc0b79964ab",
"reference": "bd87e418923e0d836c7e754d82e66bc0b79964ab",
"shasum": ""
},
"require": {
"google/auth": "^1.18",
"guzzlehttp/guzzle": "^5.3|^6.5.7|^7.4.4",
"guzzlehttp/promises": "^1.3",
"guzzlehttp/promises": "^1.4||^2.0",
"guzzlehttp/psr7": "^1.7|^2.0",
"monolog/monolog": "^1.1|^2.0|^3.0",
"php": ">=7.4",
"psr/http-message": "^1.0",
"psr/http-message": "^1.0|^2.0",
"rize/uri-template": "~0.3"
},
"require-dev": {
@@ -2966,26 +2968,26 @@
],
"description": "Google Cloud PHP shared dependency, providing functionality useful to all components.",
"support": {
"source": "https://github.com/googleapis/google-cloud-php-core/tree/v1.51.2"
"source": "https://github.com/googleapis/google-cloud-php-core/tree/v1.52.0"
},
"time": "2023-05-05T23:01:42+00:00"
"time": "2023-06-21T21:05:25+00:00"
},
{
"name": "google/cloud-storage",
"version": "v1.31.2",
"version": "v1.32.0",
"source": {
"type": "git",
"url": "https://github.com/googleapis/google-cloud-php-storage.git",
"reference": "7fe96d56856cda550b21779bb95a066b264852da"
"reference": "2dd5cee0da51e94bcf39c0af9cefd0ec6b931685"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/googleapis/google-cloud-php-storage/zipball/7fe96d56856cda550b21779bb95a066b264852da",
"reference": "7fe96d56856cda550b21779bb95a066b264852da",
"url": "https://api.github.com/repos/googleapis/google-cloud-php-storage/zipball/2dd5cee0da51e94bcf39c0af9cefd0ec6b931685",
"reference": "2dd5cee0da51e94bcf39c0af9cefd0ec6b931685",
"shasum": ""
},
"require": {
"google/cloud-core": "^1.51.1",
"google/cloud-core": "^1.51.3",
"google/crc32": "^0.2.0",
"php": ">=7.4",
"ramsey/uuid": "^4.2.3"
@@ -3023,9 +3025,9 @@
],
"description": "Cloud Storage Client for PHP",
"support": {
"source": "https://github.com/googleapis/google-cloud-php-storage/tree/v1.31.2"
"source": "https://github.com/googleapis/google-cloud-php-storage/tree/v1.32.0"
},
"time": "2023-05-05T23:01:42+00:00"
"time": "2023-06-21T21:05:25+00:00"
},
{
"name": "google/crc32",
@@ -6118,16 +6120,16 @@
},
{
"name": "nesbot/carbon",
"version": "2.67.0",
"version": "2.68.1",
"source": {
"type": "git",
"url": "https://github.com/briannesbitt/Carbon.git",
"reference": "c1001b3bc75039b07f38a79db5237c4c529e04c8"
"reference": "4f991ed2a403c85efbc4f23eb4030063fdbe01da"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/c1001b3bc75039b07f38a79db5237c4c529e04c8",
"reference": "c1001b3bc75039b07f38a79db5237c4c529e04c8",
"url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/4f991ed2a403c85efbc4f23eb4030063fdbe01da",
"reference": "4f991ed2a403c85efbc4f23eb4030063fdbe01da",
"shasum": ""
},
"require": {
@@ -6216,7 +6218,7 @@
"type": "tidelift"
}
],
"time": "2023-05-25T22:09:47+00:00"
"time": "2023-06-20T18:29:04+00:00"
},
{
"name": "nette/caching",
@@ -6506,16 +6508,16 @@
},
{
"name": "nikic/php-parser",
"version": "v4.15.5",
"version": "v4.16.0",
"source": {
"type": "git",
"url": "https://github.com/nikic/PHP-Parser.git",
"reference": "11e2663a5bc9db5d714eedb4277ee300403b4a9e"
"reference": "19526a33fb561ef417e822e85f08a00db4059c17"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/11e2663a5bc9db5d714eedb4277ee300403b4a9e",
"reference": "11e2663a5bc9db5d714eedb4277ee300403b4a9e",
"url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/19526a33fb561ef417e822e85f08a00db4059c17",
"reference": "19526a33fb561ef417e822e85f08a00db4059c17",
"shasum": ""
},
"require": {
@@ -6556,9 +6558,9 @@
],
"support": {
"issues": "https://github.com/nikic/PHP-Parser/issues",
"source": "https://github.com/nikic/PHP-Parser/tree/v4.15.5"
"source": "https://github.com/nikic/PHP-Parser/tree/v4.16.0"
},
"time": "2023-05-19T20:20:00+00:00"
"time": "2023-06-25T14:52:30+00:00"
},
{
"name": "opis/closure",
@@ -9156,16 +9158,16 @@
},
{
"name": "spatie/laravel-permission",
"version": "5.10.1",
"version": "5.10.2",
"source": {
"type": "git",
"url": "https://github.com/spatie/laravel-permission.git",
"reference": "d08b3ffc5870cce4a47a39f22174947b33c191ae"
"reference": "671e46e079cbd4990a98427daaa09f4977b57ca9"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/spatie/laravel-permission/zipball/d08b3ffc5870cce4a47a39f22174947b33c191ae",
"reference": "d08b3ffc5870cce4a47a39f22174947b33c191ae",
"url": "https://api.github.com/repos/spatie/laravel-permission/zipball/671e46e079cbd4990a98427daaa09f4977b57ca9",
"reference": "671e46e079cbd4990a98427daaa09f4977b57ca9",
"shasum": ""
},
"require": {
@@ -9226,7 +9228,7 @@
],
"support": {
"issues": "https://github.com/spatie/laravel-permission/issues",
"source": "https://github.com/spatie/laravel-permission/tree/5.10.1"
"source": "https://github.com/spatie/laravel-permission/tree/5.10.2"
},
"funding": [
{
@@ -9234,7 +9236,7 @@
"type": "github"
}
],
"time": "2023-04-12T17:08:32+00:00"
"time": "2023-07-04T13:38:13+00:00"
},
{
"name": "spatie/laravel-responsecache",
@@ -9628,16 +9630,16 @@
},
{
"name": "symfony/cache",
"version": "v5.4.23",
"version": "v5.4.25",
"source": {
"type": "git",
"url": "https://github.com/symfony/cache.git",
"reference": "983c79ff28612cdfd66d8e44e1a06e5afc87e107"
"reference": "e2013521c0f07473ae69a01fce0af78fc3ec0f23"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/cache/zipball/983c79ff28612cdfd66d8e44e1a06e5afc87e107",
"reference": "983c79ff28612cdfd66d8e44e1a06e5afc87e107",
"url": "https://api.github.com/repos/symfony/cache/zipball/e2013521c0f07473ae69a01fce0af78fc3ec0f23",
"reference": "e2013521c0f07473ae69a01fce0af78fc3ec0f23",
"shasum": ""
},
"require": {
@@ -9705,7 +9707,7 @@
"psr6"
],
"support": {
"source": "https://github.com/symfony/cache/tree/v5.4.23"
"source": "https://github.com/symfony/cache/tree/v5.4.25"
},
"funding": [
{
@@ -9721,7 +9723,7 @@
"type": "tidelift"
}
],
"time": "2023-04-21T15:38:51+00:00"
"time": "2023-06-22T08:06:06+00:00"
},
{
"name": "symfony/cache-contracts",
@@ -10334,16 +10336,16 @@
},
{
"name": "symfony/http-foundation",
"version": "v5.4.24",
"version": "v5.4.25",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-foundation.git",
"reference": "3c59f97f6249ce552a44f01b93bfcbd786a954f5"
"reference": "f66be2706075c5f6325d2fe2b743a57fb5d23f6b"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/http-foundation/zipball/3c59f97f6249ce552a44f01b93bfcbd786a954f5",
"reference": "3c59f97f6249ce552a44f01b93bfcbd786a954f5",
"url": "https://api.github.com/repos/symfony/http-foundation/zipball/f66be2706075c5f6325d2fe2b743a57fb5d23f6b",
"reference": "f66be2706075c5f6325d2fe2b743a57fb5d23f6b",
"shasum": ""
},
"require": {
@@ -10390,7 +10392,7 @@
"description": "Defines an object-oriented layer for the HTTP specification",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/http-foundation/tree/v5.4.24"
"source": "https://github.com/symfony/http-foundation/tree/v5.4.25"
},
"funding": [
{
@@ -10406,20 +10408,20 @@
"type": "tidelift"
}
],
"time": "2023-05-19T07:21:23+00:00"
"time": "2023-06-22T08:06:06+00:00"
},
{
"name": "symfony/http-kernel",
"version": "v5.4.24",
"version": "v5.4.25",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-kernel.git",
"reference": "f38b722e1557eb3f487d351b48f5a1279b50e9d1"
"reference": "f6c92fe64bbdad7616cb90663c24f6350f3ca464"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/http-kernel/zipball/f38b722e1557eb3f487d351b48f5a1279b50e9d1",
"reference": "f38b722e1557eb3f487d351b48f5a1279b50e9d1",
"url": "https://api.github.com/repos/symfony/http-kernel/zipball/f6c92fe64bbdad7616cb90663c24f6350f3ca464",
"reference": "f6c92fe64bbdad7616cb90663c24f6350f3ca464",
"shasum": ""
},
"require": {
@@ -10502,7 +10504,7 @@
"description": "Provides a structured process for converting a Request into a Response",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/http-kernel/tree/v5.4.24"
"source": "https://github.com/symfony/http-kernel/tree/v5.4.25"
},
"funding": [
{
@@ -10518,7 +10520,7 @@
"type": "tidelift"
}
],
"time": "2023-05-27T08:06:30+00:00"
"time": "2023-06-26T05:58:08+00:00"
},
{
"name": "symfony/mime",
@@ -11813,16 +11815,16 @@
},
{
"name": "symfony/routing",
"version": "v5.4.22",
"version": "v5.4.25",
"source": {
"type": "git",
"url": "https://github.com/symfony/routing.git",
"reference": "c2ac11eb34947999b7c38fb4c835a57306907e6d"
"reference": "56bfc1394f7011303eb2e22724f9b422d3f14649"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/routing/zipball/c2ac11eb34947999b7c38fb4c835a57306907e6d",
"reference": "c2ac11eb34947999b7c38fb4c835a57306907e6d",
"url": "https://api.github.com/repos/symfony/routing/zipball/56bfc1394f7011303eb2e22724f9b422d3f14649",
"reference": "56bfc1394f7011303eb2e22724f9b422d3f14649",
"shasum": ""
},
"require": {
@@ -11883,7 +11885,7 @@
"url"
],
"support": {
"source": "https://github.com/symfony/routing/tree/v5.4.22"
"source": "https://github.com/symfony/routing/tree/v5.4.25"
},
"funding": [
{
@@ -11899,20 +11901,20 @@
"type": "tidelift"
}
],
"time": "2023-03-14T14:59:20+00:00"
"time": "2023-06-05T14:18:47+00:00"
},
{
"name": "symfony/serializer",
"version": "v5.4.24",
"version": "v5.4.25",
"source": {
"type": "git",
"url": "https://github.com/symfony/serializer.git",
"reference": "12535bb7b1d3b53802bf18d61a98bb1145fabcdb"
"reference": "e528ace5951925459cb6620cc4d67c20ed616fdd"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/serializer/zipball/12535bb7b1d3b53802bf18d61a98bb1145fabcdb",
"reference": "12535bb7b1d3b53802bf18d61a98bb1145fabcdb",
"url": "https://api.github.com/repos/symfony/serializer/zipball/e528ace5951925459cb6620cc4d67c20ed616fdd",
"reference": "e528ace5951925459cb6620cc4d67c20ed616fdd",
"shasum": ""
},
"require": {
@@ -11986,7 +11988,7 @@
"description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/serializer/tree/v5.4.24"
"source": "https://github.com/symfony/serializer/tree/v5.4.25"
},
"funding": [
{
@@ -12002,7 +12004,7 @@
"type": "tidelift"
}
],
"time": "2023-05-12T08:37:35+00:00"
"time": "2023-05-31T11:43:23+00:00"
},
{
"name": "symfony/service-contracts",
@@ -12350,16 +12352,16 @@
},
{
"name": "symfony/var-dumper",
"version": "v5.4.24",
"version": "v5.4.25",
"source": {
"type": "git",
"url": "https://github.com/symfony/var-dumper.git",
"reference": "8e12706bf9c68a2da633f23bfdc15b4dce5970b3"
"reference": "82269f73c0f0f9859ab9b6900eebacbe54954ede"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/var-dumper/zipball/8e12706bf9c68a2da633f23bfdc15b4dce5970b3",
"reference": "8e12706bf9c68a2da633f23bfdc15b4dce5970b3",
"url": "https://api.github.com/repos/symfony/var-dumper/zipball/82269f73c0f0f9859ab9b6900eebacbe54954ede",
"reference": "82269f73c0f0f9859ab9b6900eebacbe54954ede",
"shasum": ""
},
"require": {
@@ -12418,7 +12420,7 @@
"dump"
],
"support": {
"source": "https://github.com/symfony/var-dumper/tree/v5.4.24"
"source": "https://github.com/symfony/var-dumper/tree/v5.4.25"
},
"funding": [
{
@@ -12434,7 +12436,7 @@
"type": "tidelift"
}
],
"time": "2023-05-25T13:05:00+00:00"
"time": "2023-06-20T20:56:26+00:00"
},
{
"name": "symfony/var-exporter",
@@ -13576,16 +13578,16 @@
},
{
"name": "doctrine/dbal",
"version": "3.6.3",
"version": "3.6.4",
"source": {
"type": "git",
"url": "https://github.com/doctrine/dbal.git",
"reference": "9a747d29e7e6b39509b8f1847e37a23a0163ea6a"
"reference": "19f0dec95edd6a3c3c5ff1d188ea94c6b7fc903f"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/doctrine/dbal/zipball/9a747d29e7e6b39509b8f1847e37a23a0163ea6a",
"reference": "9a747d29e7e6b39509b8f1847e37a23a0163ea6a",
"url": "https://api.github.com/repos/doctrine/dbal/zipball/19f0dec95edd6a3c3c5ff1d188ea94c6b7fc903f",
"reference": "19f0dec95edd6a3c3c5ff1d188ea94c6b7fc903f",
"shasum": ""
},
"require": {
@@ -13668,7 +13670,7 @@
],
"support": {
"issues": "https://github.com/doctrine/dbal/issues",
"source": "https://github.com/doctrine/dbal/tree/3.6.3"
"source": "https://github.com/doctrine/dbal/tree/3.6.4"
},
"funding": [
{
@@ -13684,7 +13686,7 @@
"type": "tidelift"
}
],
"time": "2023-06-01T05:46:46+00:00"
"time": "2023-06-15T07:40:12+00:00"
},
{
"name": "doctrine/deprecations",

Submodule console updated: 674900c8a5...f6dd21184b