Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/smart-core/old-cms-sandbox
[DEPRECATED] Development sandbox of Smart Core CMS
https://github.com/smart-core/old-cms-sandbox
Last synced: about 1 month ago
JSON representation
[DEPRECATED] Development sandbox of Smart Core CMS
- Host: GitHub
- URL: https://github.com/smart-core/old-cms-sandbox
- Owner: Smart-Core
- License: mit
- Created: 2013-12-18T12:45:00.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2018-08-14T09:28:14.000Z (over 6 years ago)
- Last Synced: 2024-04-14T22:21:03.861Z (8 months ago)
- Language: PHP
- Homepage: http://smart-core.org/
- Size: 13.3 MB
- Stars: 15
- Watchers: 4
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Smart Core CMS Sandbox
======================
[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Smart-Core/chat?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)The modern system for creating and managing web projects with open source, based on the Symfony2 Framework.
Получение последней версии песочницы:
```
git pull;git submodule update --init
```Обновление подмодулей из удалённых репозиториев:
```
git submodule update --remote
```Решение проблемы с detached head, переключение всех подмодулей в master:
```
git submodule foreach 'git checkout master'
```Пока не созданы тэги, для проектов использовать следующий набор пакетов в `composer.json`:
```
"smart-core/module-breadcrumbs": "dev-master",
"smart-core/module-gallery": "dev-master",
"smart-core/module-menu": "dev-master",
"smart-core/module-simplenews": "dev-master",
"smart-core/module-slider": "dev-master",
"smart-core/module-texter": "dev-master",
"smart-core/module-unicat": "dev-master",
"smart-core/module-user": "dev-master",
"smart-core/module-webform": "dev-master",
"smart-core/module-widget": "dev-master",
"smart-core/cms-bundle": "dev-master",
"smart-core/cms-generator-bundle": "dev-master",
"smart-core/core-bundle": "dev-master",
"smart-core/db-dumper-bundle": "dev-master",
"smart-core/felib-bundle": "dev-master",
"smart-core/html-bundle": "dev-master",
"smart-core/media-bundle": "dev-master",
"smart-core/rich-editor-bundle": "dev-master",
"smart-core/seo-bundle": "dev-master",
"smart-core/session-bundle": "dev-master",
"smart-core/settings-bundle": "dev-master",
"smart-core/simple-profiler-bundle": "dev-master",
"smart-core/sitemap-bundle": "dev-master"
```Удаление подмодуля (например `src/SmartCore/Bundle/SimpleProfilerBundle`):
```
git submodule deinit -f src/SmartCore/Bundle/SimpleProfilerBundle
git rm -f src/SmartCore/Bundle/SimpleProfilerBundle
rm -rf .git/modules/src/SmartCore/Bundle/SimpleProfilerBundle
```