Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/victoire/vacuumbundle
Converts a wordpress dump into Victoire pages
https://github.com/victoire/vacuumbundle
importer victoire wordpress
Last synced: about 2 months ago
JSON representation
Converts a wordpress dump into Victoire pages
- Host: GitHub
- URL: https://github.com/victoire/vacuumbundle
- Owner: Victoire
- License: mit
- Created: 2017-03-15T09:49:17.000Z (almost 8 years ago)
- Default Branch: develop
- Last Pushed: 2019-04-17T10:46:01.000Z (over 5 years ago)
- Last Synced: 2024-08-23T19:06:48.194Z (4 months ago)
- Topics: importer, victoire, wordpress
- Language: PHP
- Size: 194 KB
- Stars: 6
- Watchers: 5
- Forks: 1
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# VacuumBundle
The VacuumBundle offer an Implementation for the import of external data
to populate a new or an existing Victoire Blog.## Installation
Install it with composer:
php composer.phar require victoire/vacuum-bundle
Then add it to your AppKernel:
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = array(
...
new Victoire\DevTools\VacuumBundle\VictoireVacuumBundle(),
);
return $bundles;
}
}
Finally update your schema:php bin/console doctrine:schema:update --force
#### Import available
| Source | Format |
|-----------|--------|
| WordPress | XML |### Doc
1. [Basic usage](doc/basic_usage.md)
1. [How it Works](doc/how_it_works.md)