Bicycle/composer.json
Egor Isaev b516ca07dc Initial commit: Bicycle PHP MVC micro-framework
Core MVC, HTTP client, Session, Cookie, Config, HTTPException — 111 PHPUnit tests.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-04 10:04:19 +03:00

36 lines
743 B
JSON

{
"require": {
"php": ">=8.2",
"ext-pdo": "*",
"phpoffice/phpspreadsheet": "5.*",
"phpoffice/phpword": "1.1.0",
"phpmailer/phpmailer": "v6.9.*",
"twbs/bootstrap": "v5.3.*",
"twbs/bootstrap-icons": "v1.13.*",
"select2/select2": "4.1.*",
"components/jquery": "v3.7.1",
"components/jqueryui": "1.12.*",
"dompdf/dompdf": "v3.1.*"
},
"require-dev": {
"phpunit/phpunit": "^11.0"
},
"autoload": {
"psr-4": {
"App\\": "App",
"Services\\": "Services",
"System\\": "System"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"composer/installers": true
}
}
}