Murph is an open-source CMF built on top of Symfony that helps you to build your own CMS with several domains and languages.
https://doc.murph-project.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.6 KiB
68 lines
1.6 KiB
{ |
|
"name": "murph/murph-skeleton", |
|
"description": "A powerful CMS framework", |
|
"type": "project", |
|
"license": "MIT", |
|
"minimum-stability": "stable", |
|
"prefer-stable": true, |
|
"require": { |
|
"php": ">=8.0.0", |
|
"murph/murph-core": "^1.15,>=1.15.0" |
|
}, |
|
"require-dev": { |
|
"symfony/browser-kit": "^5.4", |
|
"symfony/css-selector": "^5.4", |
|
"symfony/debug-bundle": "^5.4", |
|
"symfony/maker-bundle": "^1.0", |
|
"symfony/phpunit-bridge": "^5.4", |
|
"symfony/stopwatch": "^5.4", |
|
"symfony/var-dumper": "^5.4", |
|
"symfony/web-profiler-bundle": "^5.4" |
|
}, |
|
"config": { |
|
"optimize-autoloader": true, |
|
"preferred-install": { |
|
"*": "dist" |
|
}, |
|
"sort-packages": true, |
|
"allow-plugins": { |
|
"symfony/flex": true |
|
} |
|
}, |
|
"autoload": { |
|
"psr-4": { |
|
"App\\": "src/" |
|
} |
|
}, |
|
"autoload-dev": { |
|
"psr-4": { |
|
"App\\Tests\\": "tests/" |
|
} |
|
}, |
|
"replace": { |
|
"symfony/polyfill-ctype": "*", |
|
"symfony/polyfill-iconv": "*", |
|
"symfony/polyfill-php72": "*" |
|
}, |
|
"scripts": { |
|
"auto-scripts": { |
|
"cache:clear": "symfony-cmd", |
|
"assets:install %PUBLIC_DIR%": "symfony-cmd" |
|
}, |
|
"post-install-cmd": [ |
|
"@auto-scripts" |
|
], |
|
"post-update-cmd": [ |
|
"@auto-scripts" |
|
] |
|
}, |
|
"conflict": { |
|
"symfony/symfony": "*" |
|
}, |
|
"extra": { |
|
"symfony": { |
|
"allow-contrib": false, |
|
"require": "5.4.*" |
|
} |
|
} |
|
}
|
|
|