Major changes: - New ThemeManager with Twig templating and SCSS compilation - Dynamic themes system (themes/default, themes/demo) - LogManager with SQLite storage and syslog forwarding - RequestLogger with static helper methods - Admin UI overhaul (Bootstrap 5, dark mode) - Admin config page with logging and theme settings - Admin logs page with filters and search - Removed legacy Mustache templates - Removed test plugin and theme - Composer dependencies: Twig, scssphp, CommonMark, MaxMind GeoIP
44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
"name": "scssphp/source-span",
|
|
"type": "library",
|
|
"description": "Provides a representation for source code locations and spans.",
|
|
"keywords": ["parsing"],
|
|
"license": [
|
|
"MIT"
|
|
],
|
|
"authors": [
|
|
{
|
|
"name": "Christophe Coevoet",
|
|
"homepage": "https://github.com/stof"
|
|
}
|
|
],
|
|
"autoload": {
|
|
"psr-4": { "SourceSpan\\": "src/" }
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": { "SourceSpan\\Tests\\": "tests/" }
|
|
},
|
|
"require": {
|
|
"php": ">=8.1",
|
|
"ext-mbstring": "*",
|
|
"league/uri": "^7.6",
|
|
"league/uri-interfaces": "^7.6"
|
|
},
|
|
"require-dev": {
|
|
"phpstan/phpstan": "^2.0",
|
|
"phpstan/phpstan-deprecation-rules": "^2.0",
|
|
"phpunit/phpunit": "^9.5.6",
|
|
"squizlabs/php_codesniffer": "~3.5",
|
|
"symfony/phpunit-bridge": "^6.4 || ^7.3 || ^8.0",
|
|
"symfony/var-dumper": "^6.4 || ^7.3 || ^8.0"
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-main": "1.x-dev"
|
|
}
|
|
},
|
|
"config": {
|
|
"sort-packages": true
|
|
}
|
|
}
|