2024-10-02

This commit is contained in:
gcch 2024-10-02 23:54:52 +02:00
commit 93a452ec4a
42 changed files with 895 additions and 207 deletions

413
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": "880c2b87f8157527e37d8d8b87344c62",
"content-hash": "dd0d53b220401d17c050770b6f4abd12",
"packages": [
{
"name": "composer/installers",
@ -424,6 +424,309 @@
},
"time": "2024-07-31T08:17:38+00:00"
},
{
"name": "idleberg/vite-manifest",
"version": "v1.1.0",
"source": {
"type": "git",
"url": "https://github.com/idleberg/php-vite-manifest.git",
"reference": "0bd4c59ffadf5d44a46e8205017b15c456dea6f4"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/idleberg/php-vite-manifest/zipball/0bd4c59ffadf5d44a46e8205017b15c456dea6f4",
"reference": "0bd4c59ffadf5d44a46e8205017b15c456dea6f4",
"shasum": ""
},
"require": {
"league/uri": "^7.4.1",
"php": ">=8.1"
},
"require-dev": {
"brainmaestro/composer-git-hooks": "^3.0@alpha",
"codeception/codeception": "^5.0.4",
"codeception/module-asserts": "^3.0.0",
"friendsofphp/php-cs-fixer": "^3.8",
"icanhazstring/composer-unused": "^0.8.10",
"phpstan/phpstan": "^1.9"
},
"type": "library",
"extra": {
"hooks": {
"pre-commit": [
"composer run format",
"composer run lint",
"composer run unused"
]
}
},
"autoload": {
"psr-4": {
"Idleberg\\ViteManifest\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Jan T. Sott",
"email": "idleberg@users.noreply.github.com"
}
],
"description": "A parser for Vite v2 manifest files",
"keywords": [
"vite",
"vite manifest",
"vitejs"
],
"support": {
"issues": "https://github.com/idleberg/php-vite-manifest/issues",
"source": "https://github.com/idleberg/php-vite-manifest/tree/v1.1.0"
},
"time": "2024-06-09T06:54:18+00:00"
},
{
"name": "idleberg/wordpress-vite-assets",
"version": "v1.2.0",
"source": {
"type": "git",
"url": "https://github.com/idleberg/php-wordpress-vite-assets.git",
"reference": "612bb0dea602ea590f25a85b521aacdaea644807"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/idleberg/php-wordpress-vite-assets/zipball/612bb0dea602ea590f25a85b521aacdaea644807",
"reference": "612bb0dea602ea590f25a85b521aacdaea644807",
"shasum": ""
},
"require": {
"idleberg/vite-manifest": "^1.1.0",
"php": ">=8.1"
},
"require-dev": {
"brainmaestro/composer-git-hooks": "^3.0@alpha",
"codeception/codeception": "^5.0.4",
"codeception/module-asserts": "^3.0.0",
"friendsofphp/php-cs-fixer": "^3.11",
"icanhazstring/composer-unused": "^0.8.10",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.9",
"szepeviktor/phpstan-wordpress": "^1.1"
},
"type": "library",
"extra": {
"hooks": {
"pre-commit": [
"composer run format",
"composer run lint",
"composer run unused"
]
}
},
"autoload": {
"psr-4": {
"Idleberg\\WordPress\\ViteAssets\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Jan T. Sott",
"email": "idleberg@users.noreply.github.com"
}
],
"description": "Injects assets from a Vite manifest to the Wordpress head, supports themes and plugins",
"keywords": [
"vite",
"vite manifest",
"vitejs",
"wordpress"
],
"support": {
"issues": "https://github.com/idleberg/php-wordpress-vite-assets/issues",
"source": "https://github.com/idleberg/php-wordpress-vite-assets/tree/v1.2.0"
},
"time": "2024-06-09T22:47:52+00:00"
},
{
"name": "league/uri",
"version": "7.4.1",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/uri.git",
"reference": "bedb6e55eff0c933668addaa7efa1e1f2c417cc4"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/thephpleague/uri/zipball/bedb6e55eff0c933668addaa7efa1e1f2c417cc4",
"reference": "bedb6e55eff0c933668addaa7efa1e1f2c417cc4",
"shasum": ""
},
"require": {
"league/uri-interfaces": "^7.3",
"php": "^8.1"
},
"conflict": {
"league/uri-schemes": "^1.0"
},
"suggest": {
"ext-bcmath": "to improve IPV4 host parsing",
"ext-fileinfo": "to create Data URI from file contennts",
"ext-gmp": "to improve IPV4 host parsing",
"ext-intl": "to handle IDN host with the best performance",
"jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain",
"league/uri-components": "Needed to easily manipulate URI objects components",
"php-64bit": "to improve IPV4 host parsing",
"symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "7.x-dev"
}
},
"autoload": {
"psr-4": {
"League\\Uri\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Ignace Nyamagana Butera",
"email": "nyamsprod@gmail.com",
"homepage": "https://nyamsprod.com"
}
],
"description": "URI manipulation library",
"homepage": "https://uri.thephpleague.com",
"keywords": [
"data-uri",
"file-uri",
"ftp",
"hostname",
"http",
"https",
"middleware",
"parse_str",
"parse_url",
"psr-7",
"query-string",
"querystring",
"rfc3986",
"rfc3987",
"rfc6570",
"uri",
"uri-template",
"url",
"ws"
],
"support": {
"docs": "https://uri.thephpleague.com",
"forum": "https://thephpleague.slack.com",
"issues": "https://github.com/thephpleague/uri-src/issues",
"source": "https://github.com/thephpleague/uri/tree/7.4.1"
},
"funding": [
{
"url": "https://github.com/sponsors/nyamsprod",
"type": "github"
}
],
"time": "2024-03-23T07:42:40+00:00"
},
{
"name": "league/uri-interfaces",
"version": "7.4.1",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/uri-interfaces.git",
"reference": "8d43ef5c841032c87e2de015972c06f3865ef718"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/8d43ef5c841032c87e2de015972c06f3865ef718",
"reference": "8d43ef5c841032c87e2de015972c06f3865ef718",
"shasum": ""
},
"require": {
"ext-filter": "*",
"php": "^8.1",
"psr/http-factory": "^1",
"psr/http-message": "^1.1 || ^2.0"
},
"suggest": {
"ext-bcmath": "to improve IPV4 host parsing",
"ext-gmp": "to improve IPV4 host parsing",
"ext-intl": "to handle IDN host with the best performance",
"php-64bit": "to improve IPV4 host parsing",
"symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "7.x-dev"
}
},
"autoload": {
"psr-4": {
"League\\Uri\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Ignace Nyamagana Butera",
"email": "nyamsprod@gmail.com",
"homepage": "https://nyamsprod.com"
}
],
"description": "Common interfaces and classes for URI representation and interaction",
"homepage": "https://uri.thephpleague.com",
"keywords": [
"data-uri",
"file-uri",
"ftp",
"hostname",
"http",
"https",
"parse_str",
"parse_url",
"psr-7",
"query-string",
"querystring",
"rfc3986",
"rfc3987",
"rfc6570",
"uri",
"url",
"ws"
],
"support": {
"docs": "https://uri.thephpleague.com",
"forum": "https://thephpleague.slack.com",
"issues": "https://github.com/thephpleague/uri-src/issues",
"source": "https://github.com/thephpleague/uri-interfaces/tree/7.4.1"
},
"funding": [
{
"url": "https://github.com/sponsors/nyamsprod",
"type": "github"
}
],
"time": "2024-03-23T07:42:40+00:00"
},
{
"name": "lstrojny/functional-php",
"version": "1.17.0",
@ -764,6 +1067,114 @@
],
"time": "2024-07-20T21:41:07+00:00"
},
{
"name": "psr/http-factory",
"version": "1.1.0",
"source": {
"type": "git",
"url": "https://github.com/php-fig/http-factory.git",
"reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
"reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
"shasum": ""
},
"require": {
"php": ">=7.1",
"psr/http-message": "^1.0 || ^2.0"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"autoload": {
"psr-4": {
"Psr\\Http\\Message\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "PHP-FIG",
"homepage": "https://www.php-fig.org/"
}
],
"description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
"keywords": [
"factory",
"http",
"message",
"psr",
"psr-17",
"psr-7",
"request",
"response"
],
"support": {
"source": "https://github.com/php-fig/http-factory"
},
"time": "2024-04-15T12:06:14+00:00"
},
{
"name": "psr/http-message",
"version": "2.0",
"source": {
"type": "git",
"url": "https://github.com/php-fig/http-message.git",
"reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
"reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
"shasum": ""
},
"require": {
"php": "^7.2 || ^8.0"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"autoload": {
"psr-4": {
"Psr\\Http\\Message\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "PHP-FIG",
"homepage": "https://www.php-fig.org/"
}
],
"description": "Common interface for HTTP messages",
"homepage": "https://github.com/php-fig/http-message",
"keywords": [
"http",
"http-message",
"psr",
"psr-7",
"request",
"response"
],
"support": {
"source": "https://github.com/php-fig/http-message/tree/2.0"
},
"time": "2023-04-04T09:54:51+00:00"
},
{
"name": "roots/bedrock-autoloader",
"version": "1.0.4",