- 사용자 매뉴얼: league/commonmark 기반 bag/manual(로그인 전용), ManualRenderer + Config\Manual manifest, 콘텐츠 8종, E2E - 번호알기(봉투번호확인): bag/number-lookup, BagNumberLookup, E2E - gov-portal 대시보드 시안(기본/strip)·기본코드관리 화면 - 메뉴 관리: 등록·수정 후 메뉴 화면 유지, 수정 버튼 클릭 시 상단 스크롤 - 수불/분석 리포트(LOT 수불·반품/파기·수급계획·추이) 표시 보강 - .gitignore: docs/ → /docs/ 앵커링(최상위 개발문서만 제외, app/Docs는 추적) Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
47 lines
1.2 KiB
JSON
47 lines
1.2 KiB
JSON
{
|
|
"name": "codeigniter4/appstarter",
|
|
"description": "CodeIgniter4 starter app",
|
|
"license": "MIT",
|
|
"type": "project",
|
|
"homepage": "https://codeigniter.com",
|
|
"support": {
|
|
"forum": "https://forum.codeigniter.com/",
|
|
"source": "https://github.com/codeigniter4/CodeIgniter4",
|
|
"slack": "https://codeigniterchat.slack.com"
|
|
},
|
|
"require": {
|
|
"php": "^8.2",
|
|
"codeigniter4/framework": "^4.7",
|
|
"league/commonmark": "^2.4",
|
|
"phpoffice/phpspreadsheet": "^2.2",
|
|
"robthree/twofactorauth": "^3.0"
|
|
},
|
|
"require-dev": {
|
|
"fakerphp/faker": "^1.9",
|
|
"mikey179/vfsstream": "^1.6",
|
|
"phpunit/phpunit": "^10.5.16"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "app/",
|
|
"Config\\": "app/Config/"
|
|
},
|
|
"exclude-from-classmap": [
|
|
"**/Database/Migrations/**"
|
|
]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\Support\\": "tests/_support"
|
|
}
|
|
},
|
|
"config": {
|
|
"optimize-autoloader": true,
|
|
"preferred-install": "dist",
|
|
"sort-packages": true
|
|
},
|
|
"scripts": {
|
|
"test": "phpunit"
|
|
}
|
|
}
|