Major refactoring cleanup: - Add new controller architecture (class-controller-*.php) - Add new settings-v2 UI (views/settings-v2/) - Add new CSS architecture (agentic-sidebar.css, tokens) - Add esbuild build pipeline (scripts/build.js, package.json) - Add composer dependencies (vendor/) - Add frontend src directory (assets/js/src/index.jsx) - Add documentation files - Remove old/obsolete files (class-settings.php, old CSS) This commits all pending changes from previous refactoring efforts.
48 lines
1.4 KiB
JSON
48 lines
1.4 KiB
JSON
{
|
|
"name": "doctrine/instantiator",
|
|
"description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
|
|
"type": "library",
|
|
"license": "MIT",
|
|
"homepage": "https://www.doctrine-project.org/projects/instantiator.html",
|
|
"keywords": [
|
|
"instantiate",
|
|
"constructor"
|
|
],
|
|
"authors": [
|
|
{
|
|
"name": "Marco Pivetta",
|
|
"email": "ocramius@gmail.com",
|
|
"homepage": "https://ocramius.github.io/"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^8.4"
|
|
},
|
|
"require-dev": {
|
|
"ext-phar": "*",
|
|
"ext-pdo": "*",
|
|
"doctrine/coding-standard": "^14",
|
|
"phpbench/phpbench": "^1.2",
|
|
"phpstan/phpstan": "^2.1",
|
|
"phpstan/phpstan-phpunit": "^2.0",
|
|
"phpunit/phpunit": "^10.5.58"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-0": {
|
|
"DoctrineTest\\InstantiatorPerformance\\": "tests",
|
|
"DoctrineTest\\InstantiatorTest\\": "tests",
|
|
"DoctrineTest\\InstantiatorTestAsset\\": "tests"
|
|
}
|
|
},
|
|
"config": {
|
|
"allow-plugins": {
|
|
"dealerdirect/phpcodesniffer-composer-installer": true
|
|
}
|
|
}
|
|
}
|