- Remove sidebar and toggle functionality - Add Bootstrap navbar with dropdown menus - Move navigation to top between header and content - Update menu rendering for Bootstrap dropdowns - Clean up unused files (header.mustache, sidebar.mustache, sidebar.js) - Add guide link with book icon in footer - Simplify layout structure - Remove duplicate code and fix syntax errors - Add .gitignore for node_modules and other temp files
39 lines
859 B
JSON
39 lines
859 B
JSON
{
|
|
"name": "mustache/mustache",
|
|
"description": "A Mustache implementation in PHP.",
|
|
"keywords": [
|
|
"templating",
|
|
"mustache"
|
|
],
|
|
"homepage": "https://github.com/bobthecow/mustache.php",
|
|
"type": "library",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Justin Hileman",
|
|
"email": "justin@justinhileman.info",
|
|
"homepage": "http://justinhileman.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=5.6"
|
|
},
|
|
"require-dev": {
|
|
"friendsofphp/php-cs-fixer": "~2.19.3",
|
|
"yoast/phpunit-polyfills": "^2.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Mustache\\": "src/"
|
|
},
|
|
"classmap": [
|
|
"src/compat.php"
|
|
]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Mustache\\Test\\": "test/"
|
|
}
|
|
}
|
|
}
|