nhagemann / anycontent-cms-construction-kit-php
Installs: 300
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 1
Open Issues: 7
Language:HTML
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
Installation
Composer
Just create a composer.json file with following content and run 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 Server (Vhost) Configuration
Then configure your webserver to server the content of the /web
folder, e.g. as anycontent.dev.
Modules Configuration
Go to the /config
folder and copy the file modules.example.php to modules.php.
Have a look into that file, if you want to customize your installation. You can turn off any module by removing it's registration call ($app->registerModule()) within this file.
Repository Configuration
Go to the /config
folder and copy the file config.example.yml to config.yml.
Within that file you have to specify which AnyContent repositories you want to connect to. Furthermore you can
specify how user should authenticate against your backend and add users. Default configuration contains a user
with username and password john@example.org
.