Disabled block-related features and moved their files to a 'disabled' directory, as documented in BLOCKS_DISABLED.md. Renamed CSS classes and files from 'wpcs' to 'wpcc' for consistency. Added new admin assets and settings page styles/scripts. Introduced new core, module, and template files under 'includes/'. Updated documentation and removed legacy files. Added Composer dependencies and vendor libraries for OpenCC and Symfony components.
27 lines
682 B
JSON
Executable file
27 lines
682 B
JSON
Executable file
{
|
|
"name": "psr/container",
|
|
"type": "library",
|
|
"description": "Common Container Interface (PHP FIG PSR-11)",
|
|
"keywords": ["psr", "psr-11", "container", "container-interop", "container-interface"],
|
|
"homepage": "https://github.com/php-fig/container",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "PHP-FIG",
|
|
"homepage": "https://www.php-fig.org/"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=7.4.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Psr\\Container\\": "src/"
|
|
}
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "2.0.x-dev"
|
|
}
|
|
}
|
|
}
|