chore: upgrade CI4 to v4.2.5 + update other dependencies to latest

- add file associations for env and .rsync-filter files
- include version lens to .devcontainer config
This commit is contained in:
Yassine Doghri 2022-08-31 10:11:17 +00:00
parent 10fc6f17c6
commit 2a2cb3efdb
7 changed files with 534 additions and 708 deletions

View File

@ -21,7 +21,9 @@
"color-highlight.markerType": "dot-before", "color-highlight.markerType": "dot-before",
"files.associations": { "files.associations": {
"*.xml.dist": "xml", "*.xml.dist": "xml",
"spark": "php" "spark": "php",
"env": "dotenv",
".rsync-filter": "diff"
} }
}, },
"extensions": [ "extensions": [
@ -36,6 +38,7 @@
"kasik96.latte", "kasik96.latte",
"mikestead.dotenv", "mikestead.dotenv",
"naumovs.color-highlight", "naumovs.color-highlight",
"pflannery.vscode-versionlens",
"runem.lit-plugin", "runem.lit-plugin",
"streetsidesoftware.code-spell-checker", "streetsidesoftware.code-spell-checker",
"stylelint.vscode-stylelint", "stylelint.vscode-stylelint",

View File

@ -7,7 +7,7 @@
"license": "AGPL-3.0-or-later", "license": "AGPL-3.0-or-later",
"require": { "require": {
"php": "^8.0", "php": "^8.0",
"codeigniter4/framework": "^v4.2.4", "codeigniter4/framework": "v4.2.5",
"james-heinrich/getid3": "^2.0.x-dev", "james-heinrich/getid3": "^2.0.x-dev",
"whichbrowser/parser": "^v2.1.7", "whichbrowser/parser": "^v2.1.7",
"geoip2/geoip2": "v2.13.0", "geoip2/geoip2": "v2.13.0",
@ -27,7 +27,7 @@
}, },
"require-dev": { "require-dev": {
"mikey179/vfsstream": "^v1.6.11", "mikey179/vfsstream": "^v1.6.11",
"phpunit/phpunit": "^9.5.21", "phpunit/phpunit": "^9.5.24",
"captainhook/captainhook": "^5.10.11", "captainhook/captainhook": "^5.10.11",
"symplify/easy-coding-standard": "^10.3.3", "symplify/easy-coding-standard": "^10.3.3",
"phpstan/phpstan": "^1.8.2", "phpstan/phpstan": "^1.8.2",

343
composer.lock generated
View File

@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically" "This file is @generated automatically"
], ],
"content-hash": "c7fb331cbf17ff8a7b1712778115dd20", "content-hash": "7ce607f305ab8232573882b9fad9f606",
"packages": [ "packages": [
{ {
"name": "adaures/ipcat-php", "name": "adaures/ipcat-php",
@ -169,16 +169,16 @@
}, },
{ {
"name": "codeigniter4/framework", "name": "codeigniter4/framework",
"version": "v4.2.4", "version": "v4.2.5",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/codeigniter4/framework.git", "url": "https://github.com/codeigniter4/framework.git",
"reference": "f91bc95493dcbdc398372e1366f09827656f2982" "reference": "26ebf14a1e52687ec4e214e99da0530de9e4a9a0"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/codeigniter4/framework/zipball/f91bc95493dcbdc398372e1366f09827656f2982", "url": "https://api.github.com/repos/codeigniter4/framework/zipball/26ebf14a1e52687ec4e214e99da0530de9e4a9a0",
"reference": "f91bc95493dcbdc398372e1366f09827656f2982", "reference": "26ebf14a1e52687ec4e214e99da0530de9e4a9a0",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -186,7 +186,7 @@
"ext-intl": "*", "ext-intl": "*",
"ext-json": "*", "ext-json": "*",
"ext-mbstring": "*", "ext-mbstring": "*",
"kint-php/kint": "^4.1.1", "kint-php/kint": "^4.2",
"laminas/laminas-escaper": "^2.9", "laminas/laminas-escaper": "^2.9",
"php": "^7.4 || ^8.0", "php": "^7.4 || ^8.0",
"psr/log": "^1.1" "psr/log": "^1.1"
@ -201,7 +201,18 @@
"predis/predis": "^1.1 || ^2.0" "predis/predis": "^1.1 || ^2.0"
}, },
"suggest": { "suggest": {
"ext-fileinfo": "Improves mime type detection for files" "ext-fileinfo": "Improves mime type detection for files",
"ext-imagick": "If you use Image class ImageMagickHandler",
"ext-memcache": "If you use Cache class MemcachedHandler with Memcache",
"ext-memcached": "If you use Cache class MemcachedHandler with Memcached",
"ext-mysqli": "If you use MySQL",
"ext-oci8": "If you use Oracle Database",
"ext-pgsql": "If you use PostgreSQL",
"ext-readline": "Improves CLI::input() usability",
"ext-redis": "If you use Cache class RedisHandler",
"ext-simplexml": "If you format XML",
"ext-sqlite3": "If you use SQLite3",
"ext-sqlsrv": "If you use SQL Server"
}, },
"type": "project", "type": "project",
"autoload": { "autoload": {
@ -219,7 +230,7 @@
"slack": "https://codeigniterchat.slack.com", "slack": "https://codeigniterchat.slack.com",
"source": "https://github.com/codeigniter4/CodeIgniter4" "source": "https://github.com/codeigniter4/CodeIgniter4"
}, },
"time": "2022-08-13T13:46:07+00:00" "time": "2022-08-29T01:43:28+00:00"
}, },
{ {
"name": "codeigniter4/settings", "name": "codeigniter4/settings",
@ -767,16 +778,16 @@
}, },
{ {
"name": "kint-php/kint", "name": "kint-php/kint",
"version": "4.1.4", "version": "4.2.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/kint-php/kint.git", "url": "https://github.com/kint-php/kint.git",
"reference": "84a61c9b19abd4bed2b961af8254d38deae33d44" "reference": "0518ee9e1b5b3c7bbf3c9ad837a6591e39dbfab0"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/kint-php/kint/zipball/84a61c9b19abd4bed2b961af8254d38deae33d44", "url": "https://api.github.com/repos/kint-php/kint/zipball/0518ee9e1b5b3c7bbf3c9ad837a6591e39dbfab0",
"reference": "84a61c9b19abd4bed2b961af8254d38deae33d44", "reference": "0518ee9e1b5b3c7bbf3c9ad837a6591e39dbfab0",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -818,9 +829,9 @@
"keywords": ["debug", "kint", "php"], "keywords": ["debug", "kint", "php"],
"support": { "support": {
"issues": "https://github.com/kint-php/kint/issues", "issues": "https://github.com/kint-php/kint/issues",
"source": "https://github.com/kint-php/kint/tree/4.1.4" "source": "https://github.com/kint-php/kint/tree/4.2.0"
}, },
"time": "2022-07-30T16:29:40+00:00" "time": "2022-08-27T12:15:40+00:00"
}, },
{ {
"name": "laminas/laminas-escaper", "name": "laminas/laminas-escaper",
@ -3342,218 +3353,6 @@
}, },
"time": "2022-02-21T01:04:05+00:00" "time": "2022-02-21T01:04:05+00:00"
}, },
{
"name": "phpdocumentor/reflection-common",
"version": "2.2.0",
"source": {
"type": "git",
"url": "https://github.com/phpDocumentor/ReflectionCommon.git",
"reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
"reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
"shasum": ""
},
"require": {
"php": "^7.2 || ^8.0"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-2.x": "2.x-dev"
}
},
"autoload": {
"psr-4": {
"phpDocumentor\\Reflection\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": ["MIT"],
"authors": [
{
"name": "Jaap van Otterdijk",
"email": "opensource@ijaap.nl"
}
],
"description": "Common reflection classes used by phpdocumentor to reflect the code structure",
"homepage": "http://www.phpdoc.org",
"keywords": [
"FQSEN",
"phpDocumentor",
"phpdoc",
"reflection",
"static analysis"
],
"support": {
"issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
"source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
},
"time": "2020-06-27T09:03:43+00:00"
},
{
"name": "phpdocumentor/reflection-docblock",
"version": "5.3.0",
"source": {
"type": "git",
"url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
"reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
"reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
"shasum": ""
},
"require": {
"ext-filter": "*",
"php": "^7.2 || ^8.0",
"phpdocumentor/reflection-common": "^2.2",
"phpdocumentor/type-resolver": "^1.3",
"webmozart/assert": "^1.9.1"
},
"require-dev": {
"mockery/mockery": "~1.3.2",
"psalm/phar": "^4.8"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "5.x-dev"
}
},
"autoload": {
"psr-4": {
"phpDocumentor\\Reflection\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": ["MIT"],
"authors": [
{
"name": "Mike van Riel",
"email": "me@mikevanriel.com"
},
{
"name": "Jaap van Otterdijk",
"email": "account@ijaap.nl"
}
],
"description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
"support": {
"issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
"source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
},
"time": "2021-10-19T17:43:47+00:00"
},
{
"name": "phpdocumentor/type-resolver",
"version": "1.6.1",
"source": {
"type": "git",
"url": "https://github.com/phpDocumentor/TypeResolver.git",
"reference": "77a32518733312af16a44300404e945338981de3"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/77a32518733312af16a44300404e945338981de3",
"reference": "77a32518733312af16a44300404e945338981de3",
"shasum": ""
},
"require": {
"php": "^7.2 || ^8.0",
"phpdocumentor/reflection-common": "^2.0"
},
"require-dev": {
"ext-tokenizer": "*",
"psalm/phar": "^4.8"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-1.x": "1.x-dev"
}
},
"autoload": {
"psr-4": {
"phpDocumentor\\Reflection\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": ["MIT"],
"authors": [
{
"name": "Mike van Riel",
"email": "me@mikevanriel.com"
}
],
"description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
"support": {
"issues": "https://github.com/phpDocumentor/TypeResolver/issues",
"source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.1"
},
"time": "2022-03-15T21:29:03+00:00"
},
{
"name": "phpspec/prophecy",
"version": "v1.15.0",
"source": {
"type": "git",
"url": "https://github.com/phpspec/prophecy.git",
"reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/phpspec/prophecy/zipball/bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
"reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
"shasum": ""
},
"require": {
"doctrine/instantiator": "^1.2",
"php": "^7.2 || ~8.0, <8.2",
"phpdocumentor/reflection-docblock": "^5.2",
"sebastian/comparator": "^3.0 || ^4.0",
"sebastian/recursion-context": "^3.0 || ^4.0"
},
"require-dev": {
"phpspec/phpspec": "^6.0 || ^7.0",
"phpunit/phpunit": "^8.0 || ^9.0"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"autoload": {
"psr-4": {
"Prophecy\\": "src/Prophecy"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": ["MIT"],
"authors": [
{
"name": "Konstantin Kudryashov",
"email": "ever.zet@gmail.com",
"homepage": "http://everzet.com"
},
{
"name": "Marcello Duarte",
"email": "marcello.duarte@gmail.com"
}
],
"description": "Highly opinionated mocking framework for PHP 5.3+",
"homepage": "https://github.com/phpspec/prophecy",
"keywords": ["Double", "Dummy", "fake", "mock", "spy", "stub"],
"support": {
"issues": "https://github.com/phpspec/prophecy/issues",
"source": "https://github.com/phpspec/prophecy/tree/v1.15.0"
},
"time": "2021-12-08T12:19:24+00:00"
},
{ {
"name": "phpstan/phpstan", "name": "phpstan/phpstan",
"version": "1.8.2", "version": "1.8.2",
@ -3608,16 +3407,16 @@
}, },
{ {
"name": "phpunit/php-code-coverage", "name": "phpunit/php-code-coverage",
"version": "9.2.16", "version": "9.2.17",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/sebastianbergmann/php-code-coverage.git", "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
"reference": "2593003befdcc10db5e213f9f28814f5aa8ac073" "reference": "aa94dc41e8661fe90c7316849907cba3007b10d8"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/2593003befdcc10db5e213f9f28814f5aa8ac073", "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/aa94dc41e8661fe90c7316849907cba3007b10d8",
"reference": "2593003befdcc10db5e213f9f28814f5aa8ac073", "reference": "aa94dc41e8661fe90c7316849907cba3007b10d8",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -3665,7 +3464,7 @@
"keywords": ["coverage", "testing", "xunit"], "keywords": ["coverage", "testing", "xunit"],
"support": { "support": {
"issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
"source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.16" "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.17"
}, },
"funding": [ "funding": [
{ {
@ -3673,7 +3472,7 @@
"type": "github" "type": "github"
} }
], ],
"time": "2022-08-20T05:26:47+00:00" "time": "2022-08-30T12:24:04+00:00"
}, },
{ {
"name": "phpunit/php-file-iterator", "name": "phpunit/php-file-iterator",
@ -3893,16 +3692,16 @@
}, },
{ {
"name": "phpunit/phpunit", "name": "phpunit/phpunit",
"version": "9.5.21", "version": "9.5.24",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/sebastianbergmann/phpunit.git", "url": "https://github.com/sebastianbergmann/phpunit.git",
"reference": "0e32b76be457de00e83213528f6bb37e2a38fcb1" "reference": "d0aa6097bef9fd42458a9b3c49da32c6ce6129c5"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/0e32b76be457de00e83213528f6bb37e2a38fcb1", "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/d0aa6097bef9fd42458a9b3c49da32c6ce6129c5",
"reference": "0e32b76be457de00e83213528f6bb37e2a38fcb1", "reference": "d0aa6097bef9fd42458a9b3c49da32c6ce6129c5",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -3917,7 +3716,6 @@
"phar-io/manifest": "^2.0.3", "phar-io/manifest": "^2.0.3",
"phar-io/version": "^3.0.2", "phar-io/version": "^3.0.2",
"php": ">=7.3", "php": ">=7.3",
"phpspec/prophecy": "^1.12.1",
"phpunit/php-code-coverage": "^9.2.13", "phpunit/php-code-coverage": "^9.2.13",
"phpunit/php-file-iterator": "^3.0.5", "phpunit/php-file-iterator": "^3.0.5",
"phpunit/php-invoker": "^3.1.1", "phpunit/php-invoker": "^3.1.1",
@ -3932,12 +3730,9 @@
"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": "^3.0", "sebastian/type": "^3.1",
"sebastian/version": "^3.0.2" "sebastian/version": "^3.0.2"
}, },
"require-dev": {
"phpspec/prophecy-phpunit": "^2.0.1"
},
"suggest": { "suggest": {
"ext-soap": "*", "ext-soap": "*",
"ext-xdebug": "*" "ext-xdebug": "*"
@ -3967,7 +3762,7 @@
"keywords": ["phpunit", "testing", "xunit"], "keywords": ["phpunit", "testing", "xunit"],
"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.21" "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.24"
}, },
"funding": [ "funding": [
{ {
@ -3979,7 +3774,7 @@
"type": "github" "type": "github"
} }
], ],
"time": "2022-06-19T12:14:25+00:00" "time": "2022-08-30T07:42:16+00:00"
}, },
{ {
"name": "psr/container", "name": "psr/container",
@ -4869,16 +4664,16 @@
}, },
{ {
"name": "sebastian/type", "name": "sebastian/type",
"version": "3.0.0", "version": "3.1.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/sebastianbergmann/type.git", "url": "https://github.com/sebastianbergmann/type.git",
"reference": "b233b84bc4465aff7b57cf1c4bc75c86d00d6dad" "reference": "fb44e1cc6e557418387ad815780360057e40753e"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/type/zipball/b233b84bc4465aff7b57cf1c4bc75c86d00d6dad", "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/fb44e1cc6e557418387ad815780360057e40753e",
"reference": "b233b84bc4465aff7b57cf1c4bc75c86d00d6dad", "reference": "fb44e1cc6e557418387ad815780360057e40753e",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -4890,7 +4685,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "3.0-dev" "dev-master": "3.1-dev"
} }
}, },
"autoload": { "autoload": {
@ -4909,7 +4704,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/3.0.0" "source": "https://github.com/sebastianbergmann/type/tree/3.1.0"
}, },
"funding": [ "funding": [
{ {
@ -4917,7 +4712,7 @@
"type": "github" "type": "github"
} }
], ],
"time": "2022-03-15T09:54:48+00:00" "time": "2022-08-29T06:55:37+00:00"
}, },
{ {
"name": "sebastian/version", "name": "sebastian/version",
@ -5075,16 +4870,16 @@
}, },
{ {
"name": "sebastianfeldmann/git", "name": "sebastianfeldmann/git",
"version": "3.8.3", "version": "3.8.4",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/sebastianfeldmann/git.git", "url": "https://github.com/sebastianfeldmann/git.git",
"reference": "853066c3841faf96d3f0ea00822eeb3b6cd8d995" "reference": "b324b6ba21871709812e34ad278a82c2e1c2965b"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/sebastianfeldmann/git/zipball/853066c3841faf96d3f0ea00822eeb3b6cd8d995", "url": "https://api.github.com/repos/sebastianfeldmann/git/zipball/b324b6ba21871709812e34ad278a82c2e1c2965b",
"reference": "853066c3841faf96d3f0ea00822eeb3b6cd8d995", "reference": "b324b6ba21871709812e34ad278a82c2e1c2965b",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -5120,7 +4915,7 @@
"keywords": ["git"], "keywords": ["git"],
"support": { "support": {
"issues": "https://github.com/sebastianfeldmann/git/issues", "issues": "https://github.com/sebastianfeldmann/git/issues",
"source": "https://github.com/sebastianfeldmann/git/tree/3.8.3" "source": "https://github.com/sebastianfeldmann/git/tree/3.8.4"
}, },
"funding": [ "funding": [
{ {
@ -5128,7 +4923,7 @@
"type": "github" "type": "github"
} }
], ],
"time": "2022-07-26T19:59:55+00:00" "time": "2022-08-26T07:03:13+00:00"
}, },
{ {
"name": "symfony/config", "name": "symfony/config",
@ -5205,16 +5000,16 @@
}, },
{ {
"name": "symfony/console", "name": "symfony/console",
"version": "v6.1.3", "version": "v6.1.4",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/console.git", "url": "https://github.com/symfony/console.git",
"reference": "43fcb5c5966b43c56bcfa481368d90d748936ab8" "reference": "7fccea8728aa2d431a6725b02b3ce759049fc84d"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/console/zipball/43fcb5c5966b43c56bcfa481368d90d748936ab8", "url": "https://api.github.com/repos/symfony/console/zipball/7fccea8728aa2d431a6725b02b3ce759049fc84d",
"reference": "43fcb5c5966b43c56bcfa481368d90d748936ab8", "reference": "7fccea8728aa2d431a6725b02b3ce759049fc84d",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -5272,7 +5067,7 @@
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"keywords": ["cli", "command line", "console", "terminal"], "keywords": ["cli", "command line", "console", "terminal"],
"support": { "support": {
"source": "https://github.com/symfony/console/tree/v6.1.3" "source": "https://github.com/symfony/console/tree/v6.1.4"
}, },
"funding": [ "funding": [
{ {
@ -5288,7 +5083,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-07-22T14:17:57+00:00" "time": "2022-08-26T10:32:31+00:00"
}, },
{ {
"name": "symfony/dependency-injection", "name": "symfony/dependency-injection",
@ -5531,16 +5326,16 @@
}, },
{ {
"name": "symfony/filesystem", "name": "symfony/filesystem",
"version": "v6.1.3", "version": "v6.1.4",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/filesystem.git", "url": "https://github.com/symfony/filesystem.git",
"reference": "c780e677cddda78417fa5187a7c6cd2f21110db9" "reference": "3f39c04d2630c34019907b02f85672dac99f8659"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/filesystem/zipball/c780e677cddda78417fa5187a7c6cd2f21110db9", "url": "https://api.github.com/repos/symfony/filesystem/zipball/3f39c04d2630c34019907b02f85672dac99f8659",
"reference": "c780e677cddda78417fa5187a7c6cd2f21110db9", "reference": "3f39c04d2630c34019907b02f85672dac99f8659",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -5570,7 +5365,7 @@
"description": "Provides basic utilities for the filesystem", "description": "Provides basic utilities for the filesystem",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/filesystem/tree/v6.1.3" "source": "https://github.com/symfony/filesystem/tree/v6.1.4"
}, },
"funding": [ "funding": [
{ {
@ -5586,7 +5381,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-07-20T14:45:06+00:00" "time": "2022-08-02T16:17:38+00:00"
}, },
{ {
"name": "symfony/finder", "name": "symfony/finder",
@ -6060,16 +5855,16 @@
}, },
{ {
"name": "symfony/string", "name": "symfony/string",
"version": "v6.1.3", "version": "v6.1.4",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/string.git", "url": "https://github.com/symfony/string.git",
"reference": "f35241f45c30bcd9046af2bb200a7086f70e1d6b" "reference": "290972cad7b364e3befaa74ba0ec729800fb161c"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/string/zipball/f35241f45c30bcd9046af2bb200a7086f70e1d6b", "url": "https://api.github.com/repos/symfony/string/zipball/290972cad7b364e3befaa74ba0ec729800fb161c",
"reference": "f35241f45c30bcd9046af2bb200a7086f70e1d6b", "reference": "290972cad7b364e3befaa74ba0ec729800fb161c",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -6112,7 +5907,7 @@
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"keywords": ["grapheme", "i18n", "string", "unicode", "utf-8", "utf8"], "keywords": ["grapheme", "i18n", "string", "unicode", "utf-8", "utf8"],
"support": { "support": {
"source": "https://github.com/symfony/string/tree/v6.1.3" "source": "https://github.com/symfony/string/tree/v6.1.4"
}, },
"funding": [ "funding": [
{ {
@ -6128,7 +5923,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2022-07-27T15:50:51+00:00" "time": "2022-08-12T18:05:43+00:00"
}, },
{ {
"name": "symplify/autowire-array-parameter", "name": "symplify/autowire-array-parameter",

2
env
View File

@ -48,7 +48,7 @@
# database.default.port = 3306 # database.default.port = 3306
# database.tests.hostname = localhost # database.tests.hostname = localhost
# database.tests.database = ci4 # database.tests.database = ci4_test
# database.tests.username = root # database.tests.username = root
# database.tests.password = root # database.tests.password = root
# database.tests.DBDriver = MySQLi # database.tests.DBDriver = MySQLi

859
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -37,7 +37,7 @@
"@github/clipboard-copy-element": "^1.1.2", "@github/clipboard-copy-element": "^1.1.2",
"@github/hotkey": "^2.0.1", "@github/hotkey": "^2.0.1",
"@github/markdown-toolbar-element": "^2.1.1", "@github/markdown-toolbar-element": "^2.1.1",
"@github/time-elements": "^3.1.2", "@github/time-elements": "^3.1.4",
"@tailwindcss/nesting": "^0.0.0-insiders.565cd3e", "@tailwindcss/nesting": "^0.0.0-insiders.565cd3e",
"@vime/core": "^5.3.1", "@vime/core": "^5.3.1",
"choices.js": "^10.1.0", "choices.js": "^10.1.0",
@ -46,13 +46,13 @@
"leaflet": "^1.8.0", "leaflet": "^1.8.0",
"leaflet.markercluster": "^1.5.3", "leaflet.markercluster": "^1.5.3",
"lit": "^2.3.1", "lit": "^2.3.1",
"marked": "^4.0.18", "marked": "^4.1.0",
"wavesurfer.js": "^6.2.0", "wavesurfer.js": "^6.2.0",
"xml-formatter": "^2.6.1" "xml-formatter": "^2.6.1"
}, },
"devDependencies": { "devDependencies": {
"@commitlint/cli": "^17.0.3", "@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.0.3", "@commitlint/config-conventional": "^17.1.0",
"@semantic-release/changelog": "^6.0.1", "@semantic-release/changelog": "^6.0.1",
"@semantic-release/exec": "^6.0.3", "@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1", "@semantic-release/git": "^10.0.1",
@ -61,34 +61,34 @@
"@tailwindcss/line-clamp": "^0.4.0", "@tailwindcss/line-clamp": "^0.4.0",
"@tailwindcss/typography": "^0.5.4", "@tailwindcss/typography": "^0.5.4",
"@types/leaflet": "^1.7.11", "@types/leaflet": "^1.7.11",
"@types/marked": "^4.0.5", "@types/marked": "^4.0.6",
"@types/wavesurfer.js": "^6.0.3", "@types/wavesurfer.js": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^5.33.1", "@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.33.1", "@typescript-eslint/parser": "^5.36.1",
"all-contributors-cli": "^6.20.0", "all-contributors-cli": "^6.20.0",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"cssnano": "^5.1.13", "cssnano": "^5.1.13",
"cz-conventional-changelog": "^3.3.0", "cz-conventional-changelog": "^3.3.0",
"eslint": "^8.22.0", "eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0", "eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1", "eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1", "husky": "^8.0.1",
"is-ci": "^3.0.1", "is-ci": "^3.0.1",
"lint-staged": "^13.0.3", "lint-staged": "^13.0.3",
"postcss-import": "^14.1.0", "postcss-import": "^15.0.0",
"postcss-nesting": "^10.1.10", "postcss-nesting": "^10.1.10",
"postcss-preset-env": "^7.8.0", "postcss-preset-env": "^7.8.0",
"postcss-reporter": "^7.0.5", "postcss-reporter": "^7.0.5",
"prettier": "2.7.1", "prettier": "2.7.1",
"prettier-plugin-organize-imports": "^3.1.0", "prettier-plugin-organize-imports": "^3.1.0",
"semantic-release": "^19.0.3", "semantic-release": "^19.0.5",
"stylelint": "^14.10.0", "stylelint": "^14.11.0",
"stylelint-config-standard": "^27.0.0", "stylelint-config-standard": "^28.0.0",
"svgo": "^2.8.0", "svgo": "^2.8.0",
"tailwindcss": "^3.1.8", "tailwindcss": "^3.1.8",
"typescript": "^4.7.4", "typescript": "^4.8.2",
"vite": "2.8.6", "vite": "2.8.6",
"vite-plugin-pwa": "^0.12.3", "vite-plugin-pwa": "^0.12.4",
"workbox-build": "^6.5.4", "workbox-build": "^6.5.4",
"workbox-core": "^6.5.4", "workbox-core": "^6.5.4",
"workbox-routing": "^6.5.4", "workbox-routing": "^6.5.4",

View File

@ -21,3 +21,4 @@ parameters:
- '#Cannot access property [\$a-z_]+ on ((array\|)?object)#' - '#Cannot access property [\$a-z_]+ on ((array\|)?object)#'
- '#^Call to an undefined method CodeIgniter\\Database\\ConnectionInterface#' - '#^Call to an undefined method CodeIgniter\\Database\\ConnectionInterface#'
- '#^Access to an undefined property App\\Entities\\Media\\Image#' - '#^Access to an undefined property App\\Entities\\Media\\Image#'
- '#^Call to an undefined method CodeIgniter\\HTTP\\RequestInterface#'