updated dependencies

This commit is contained in:
Abdulmohsen B. A. A.
2024-12-26 18:20:51 +03:00
parent 14e99e2e8a
commit de13d522e4
4 changed files with 443 additions and 503 deletions

1
.gitignore vendored
View File

@@ -3,3 +3,4 @@
/.env
/.phpunit.result.cache
/.vscode
/frontend/exported/

View File

@@ -26,34 +26,34 @@
"ext-redis": "*",
"ext-posix": "*",
"ext-openssl": "*",
"monolog/monolog": "^3.4",
"symfony/console": "^6.1.4",
"symfony/cache": "^6.1.3",
"symfony/yaml": "^6.1.4",
"symfony/process": "^6.1.3",
"symfony/http-client": "^6.1.4",
"symfony/lock": "^6.1.3",
"league/container": "^4.2",
"psr/http-client": "^1.0.1",
"psr/simple-cache": "3.0 as 1.0",
"psr/http-server-middleware": "^1.0.1",
"nyholm/psr7": "^1.5.1",
"nyholm/psr7-server": "^1.0.2",
"dragonmantank/cron-expression": "^3.3.2",
"halaxa/json-machine": "^1.1.1",
"psr/http-client": "^1.0.3",
"psr/simple-cache": "^3.0",
"psr/http-server-middleware": "^1.0.2",
"monolog/monolog": "^3.8.1",
"symfony/console": "^7.2.1",
"symfony/cache": "^7.2.1",
"symfony/yaml": "^7.2",
"symfony/process": "^7.2",
"symfony/http-client": "^7.2.1",
"symfony/lock": "^7.2",
"symfony/event-dispatcher": "^7.2",
"league/container": "^4.2.4",
"league/route": "^6.2.0",
"nyholm/psr7": "^1.8.2",
"nyholm/psr7-server": "^1.1.0",
"dragonmantank/cron-expression": "^3.4.0",
"halaxa/json-machine": "^1.2.0",
"psy/psysh": "^0.12.7",
"symfony/event-dispatcher": "^6.1.4",
"ramsey/uuid": "^4.5.1"
"ramsey/uuid": "^4.7.6"
},
"suggest": {
"ext-sockets": "For UDP commincations."
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"symfony/var-dumper": "^6.1.3",
"perftools/php-profiler": "^1.1.1",
"phpunit/phpunit": "^9.5.24"
"symfony/var-dumper": "^7.2",
"perftools/php-profiler": "^1.1.2",
"phpunit/phpunit": "^11.5.2"
},
"autoload-dev": {
"psr-4": {
@@ -80,6 +80,8 @@
"symfony/polyfill-php82": "*",
"symfony/polyfill-php83": "*",
"symfony/polyfill-php84": "*",
"symfony/polyfill-php85": "*",
"symfony/polyfill-php86": "*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-mbstring": "*",
"symfony/polyfill-intl-normalizer": "*",

893
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,20 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.6/phpunit.xsd"
bootstrap="tests/bootstrap.php" colors="true">
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.5/phpunit.xsd" bootstrap="tests/bootstrap.php"
colors="true">
<testsuites>
<testsuite name="WatchState Test Suite">
<directory>tests</directory>
<exclude>./tests/Mappers/Import.php</exclude>
</testsuite>
</testsuites>
<coverage>
<logging/>
<source>
<include>
<directory suffix=".php">src</directory>
</include>
<exclude>
<directory>tests</directory>
</exclude>
</coverage>
<logging/>
</source>
</phpunit>