nhagemann / anycontent-cms-construction-kit-php
此包已被废弃且不再维护。作者建议使用nhagemann/anycontent-backend包。
4.0
2018-08-20 10:16 UTC
Requires
- php: >=7.0
- cogpowered/finediff: ^0.3
- knplabs/console-service-provider: ^1
- monolog/monolog: ^1
- nhagemann/anycontent-client-php: ^4.0
- nhagemann/anycontent-service-php: ^4.0
- phpoffice/phpexcel: ^1.8
- silex/silex: ^1
- symfony/filesystem: ^2
- symfony/yaml: ^2
- twig/twig: ^1
- dev-master
- 4.0
- 3.3.4
- 3.3.3
- 3.3.2
- 3.3.1
- 3.3.0
- 3.2.0
- 3.1
- 3.0.3
- 3.0.2
- 3.0.1
- 3.0
- 2.1
- 2.0.1
- 2.0
- 1.0
- 0.13.3.5
- 0.13.3.4
- 0.13.3.3
- 0.13.3.2
- 0.13.3.1
- 0.13.3
- 0.13.2
- 0.13.1
- 0.13
- 0.12.3
- 0.12.2
- 0.12.1
- 0.12
- 0.11.1
- 0.11
- 0.10.10
- 0.10.9
- 0.10.8
- 0.10.7
- 0.10.6
- 0.10.5
- 0.10.4
- 0.10.3
- 0.10.2
- 0.10
- 0.9.13
- 0.9.12
- 0.9.11
- 0.9.10
- 0.9.9
- 0.9.8
- 0.9.7
- 0.9.6
- 0.9.5
- 0.9.4
- 0.9.3
- 0.9.2
- 0.9.1
- 0.9
- 0.8.5
- 0.8.4
- 0.8.3
- 0.8.2
- 0.8.1
- 0.8
- 0.7.x-dev
- 0.4.x-dev
- dev-develop
- dev-revisions
- dev-feature/importfolder
This package is auto-updated.
Last update: 2023-12-01 15:49:37 UTC
README
安装
Composer
只需创建一个包含以下内容的composer.json文件,然后运行composer install
{
"require": {
"php": ">=5.3",
"nhagemann/anycontent-cms-construction-kit-php": "^3.0"
},
"scripts": {
"post-update-cmd": "AnyContent\\CMCK\\Command\\Installer::postInstallUpdate",
"post-install-cmd": "AnyContent\\CMCK\\Command\\Installer::postInstallUpdate"
},
"autoload": {
"psr-0": {
"": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}
Web服务器(虚拟主机)配置
然后配置您的web服务器以服务/web
文件夹的内容,例如作为anycontent.dev。
模块配置
转到/config
文件夹,并将文件modules.example.php复制到modules.php。
如果您想自定义安装,请查看该文件。您可以通过在此文件中移除它的注册调用($app->registerModule())来关闭任何模块。
仓库配置
转到/config
文件夹,并将文件config.example.yml复制到config.yml。
在此文件中,您必须指定您想要连接的AnyContent仓库。此外,您可以指定用户如何对您的后端进行身份验证并添加用户。默认配置包含一个用户名为john@example.org
的默认用户。