corepulse / corepulse
corepulse cms
Package info
github.com/starfruit-php/corepulse
Type:pimcore-bundle
pkg:composer/corepulse/corepulse
2.0.4
2024-11-08 04:21 UTC
Requires
- google/apiclient: ^2.15.0
- pentatrion/vite-bundle: >=6.3
- pimcore/pimcore: >=11.0
- rompetomp/inertia-bundle: >=2.4
- starfruit/builder-bundle: >=0.7.6
- starfruitjsc/validator-bundle: >=1.0
- symfony/serializer-pack: >=1.3
- dev-master
- 2.0.4
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0.0
- 1.9.9
- 1.9.8
- 1.9.7
- 1.9.6
- 1.9.5
- 1.9.4
- 1.9.3
- 1.9.2
- 1.9.1
- 1.9.0
- 1.8.9
- 1.8.8
- 1.8.7
- 1.8.6
- 1.8.5
- 1.8.4
- 1.8.3
- 1.8.2
- 1.8.1
- 1.8.0
- 1.7.9
- 1.7.8
- 1.7.7
- 1.7.6
- 1.7.5
- 1.7.4
- 1.7.3
- 1.7.2
- 1.7.1
- 1.7.0
- 1.6.9
- 1.6.8
- 1.6.7
- 1.6.6
- 1.6.5
- 1.6.4
- 1.6.3
- 1.6.2
- 1.6.1
- 1.6.0
- 1.5.9
- 1.5.8
- 1.5.7
- 1.5.6
- 1.5.5
- 1.5.4
- 1.5.3
- 1.5.2
- 1.5.1
- 1.5.0
- 1.4.9
- 1.4.8
- 1.4.7
- 1.4.6
- 1.4.5
- 1.4.4
- 1.4.3
- 1.4.2
- 1.4.1
- 1.4.0
- 1.3.9
- 1.3.8
- 1.3.7
- 1.3.6
- 1.3.5
- 1.3.4
- 1.3.3
- 1.3.2
- 1.3.1
- 1.3.0
- 1.2.9
- 1.2.8
- 1.2.7
- 1.2.6
- 1.2.5
- 1.2.4
- 1.2.3
- 1.2.2
- 1.2.1
- 1.2.0
- 1.1.9
- 1.1.8
- 1.1.7
- 1.1.6
- 1.1.5
- 1.1.4
- 1.1.3
- 1.1.2
- 1.1.1
- 1.1.0
- 1.0.9
- 1.0.8
- 1.0.7
- 1.0.6
- 1.0.5
- 1.0.4
- 1.0.3
- 1.0.2
- 1.0.1
- 1.0.0
- 0.0.9
- 0.0.8
- 0.0.7
- 0.0.6
- 0.0.5
- 0.0.4
- 0.0.3
- 0.0.2
- 0.0.1
- dev-auth-api
This package is auto-updated.
Last update: 2026-03-08 12:05:23 UTC
README
Installation
- On your Pimcore 11 root project:
composer require corepulse/corepulse
- Update
config/bundles.phpfile:
return [ .... ValidatorBundle\ValidatorBundle::class => ['all' => true], Rompetomp\InertiaBundle\RompetompInertiaBundle::class => ['all' => true], Pentatrion\ViteBundle\PentatrionViteBundle::class => ['all' => true], CorepulseBundle\CorepulseBundle::class => ['all' => true], ];
- Install bundle:
./bin/console pimcore:bundle:install CorepulseBundle
- Update
config/packages/security.yamlfile:
security:
...
firewalls:
corepulse_cms: '%corepulse_admin.firewall_settings%'
...
access_control:
...
- { path: ^/corepulse/cms/api/auth, roles: PUBLIC_ACCESS }
- { path: ^/corepulse/cms/api/auth/logout, roles: ROLE_COREPULSE_USER }
- { path: ^/corepulse/cms/api, roles: ROLE_COREPULSE_USER }
- { path: ^/cms/login, roles: PUBLIC_ACCESS }
- { path: ^/cms, roles: ROLE_COREPULSE_USER }
- Setup default in Pimcore admin UI first then enjoy with https://your-domain/cms
Update
Run command to create or update custom database configs:
# create tables ./bin/console corepulse:setup # update with option `--update` or `-u` ./bin/console corepulse:setup -u
API
Document
Full documents here
