nextbox / neos-asset-import
CLi Asset-Importer for Neos
Installs: 164
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:neos-application
pkg:composer/nextbox/neos-asset-import
Requires
- php: >=8.0
- neos/neos: *
This package is auto-updated.
Last update: 2026-01-28 14:24:00 UTC
README
Import a resource as an asset through the command line.
Installation
composer require ventusforge/neos-asset-import
Usage
Import a single file
./flow assetimport:file --resource "/path/to/resource.jpg"
Optional arguments:
--title: Title of the asset--caption: Caption of the asset--copyright: Copyright notice of the asset--filename: "override-filename.jpg" ⚠️ the name must contain the file extension!--dry-run: If true, the files will not be imported, but the command will output what would have been imported
Import all files in a directory
./flow assetimport:directory /data/Data/VideoImport
Optional arguments:
--extension: The extension of the files to import (e.g. "jpg", "png", "mp4", "mp3", "pdf")--dry-run: If true, the files will not be imported, but the command will output what would have been imported--interactive: If true, the command will ask for confirmation before importing each file