Bicycle/composer.json
Egor Isaev e761ce9287 Add project structure: composer.json, System/ directories, bin/bicycle
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-27 15:47:52 +03:00

28 lines
596 B
JSON

{
"name": "bicycle/framework",
"description": "Самописный PHP-фреймворк",
"type": "project",
"require": {
"php": "^8.1"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"squizlabs/php_codesniffer": "^3.0",
"phpstan/phpstan": "^1.0"
},
"autoload": {
"psr-4": {
"Bicycle\\": "System/"
}
},
"autoload-dev": {
"psr-4": {
"Bicycle\\Tests\\": "tests/"
}
},
"config": {
"optimize-autoloader": true
},
"minimum-stability": "stable"
}