induxx / parsable-file-multi-tool
Installs: 448
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 2
Open Issues: 17
pkg:composer/induxx/parsable-file-multi-tool
Requires
- php: >=8.1
- ext-curl: *
- ext-iconv: *
- ext-json: *
- ext-simplexml: *
- ext-xmlreader: *
- ext-xmlwriter: *
- ext-zip: *
- adhocore/cli: ^0.9.0
- aspera/xlsx-reader: ^1.1.0
- beberlei/assert: ^3.3
- firebase/php-jwt: ^v6.8
- guzzlehttp/guzzle: ^7.4
- induxx/shared-app-libraries: 1.0.*
- psr/log: ^3.0
- symfony/yaml: 6.*
Requires (Dev)
- jangregor/phpstan-prophecy: *
- phpspec/prophecy: ^1.17
- phpspec/prophecy-phpunit: ^2.0
- phpstan/phpstan: *
- phpstan/phpstan-beberlei-assert: ^0.12.6
- phpunit/phpunit: ~9.6.8
- roave/security-advisories: dev-master
- symfony/var-dumper: *
- dev-master
- v2.1.x-dev
- 2.1.5
- 2.1.4
- 2.1.3
- 2.1.2
- 2.1.1
- 2.1.0
- v2.0.x-dev
- 2.0.89
- 2.0.88
- 2.0.87
- 2.0.86
- 2.0.85
- 2.0.84
- 2.0.83
- 2.0.82
- 2.0.81
- 2.0.80
- 2.0.79
- 2.0.78
- 2.0.77
- 2.0.76
- 2.0.75
- 2.0.74
- 2.0.73
- 2.0.72
- 2.0.71
- 2.0.70
- 2.0.69
- 2.0.68
- 2.0.67
- 2.0.66
- 2.0.65
- 2.0.64
- 2.0.63
- 2.0.62
- 2.0.61
- 2.0.60
- 2.0.59
- 2.0.58
- 2.0.57
- 2.0.56
- 2.0.55
- 2.0.54
- 2.0.53
- 2.0.52
- 2.0.51
- 2.0.50
- 2.0.49
- 2.0.48
- 2.0.47
- 2.0.46
- 2.0.45
- 2.0.44
- 2.0.43
- 2.0.42
- 2.0.41
- 2.0.40
- 2.0.39
- 2.0.38
- 2.0.37
- 2.0.36
- 2.0.35
- 2.0.34
- 2.0.33
- 2.0.32
- 2.0.31
- 2.0.30
- 2.0.29
- 2.0.28
- 2.0.27
- 2.0.26
- 2.0.25
- 2.0.24
- 2.0.23
- 2.0.22
- 2.0.21
- 2.0.20
- 2.0.19
- 2.0.18
- 2.0.17
- 2.0.16
- 2.0.15
- 2.0.14
- 2.0.13
- 2.0.12
- 2.0.11
- 2.0.10
- 2.0.9
- 2.0.8
- 2.0.7
- 2.0.6
- 2.0.5
- 2.0.4
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0.0
- 1.2.1
- 1.2.0
- 1.1.23
- 1.1.22
- 1.1.21
- 1.1.20
- 1.1.19
- 1.1.18
- 1.1.17
- 1.1.16
- 1.1.15
- 1.1.14
- 1.1.13
- 1.1.12
- 1.1.11
- 1.1.10
- 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.1
- 1.0.0
- 0.0.1
- dev-v2.1-reform
- dev-v2.1-docs
- dev-SUPKLIUM-8
- dev-revert_override
- dev-obelink-xml-v3
- dev-cibo-migration
- dev-magento-improvements
- dev-feat/magento-app-mappings
- dev-multi-prototype
This package is not auto-updated.
Last update: 2025-10-22 11:13:55 UTC
README
A powerful PHP-based data transformation and processing tool designed for handling complex data pipelines, file format conversions, and integration workflows. This tool provides a flexible framework for transforming data between various formats with support for custom actions, directives, and extensible processing pipelines.
Key Features
- Multi-format Support: Process CSV, XML, JSON, and other structured data formats
- Flexible Transformations: Chain multiple transformation steps with configurable actions
- Extensible Architecture: Create custom actions and extensions for specific use cases
- Integration Ready: Built-in support for Akeneo PIM and other e-commerce platforms
- Debugging Tools: Comprehensive debugging and validation capabilities
- Docker Support: Containerized environment for consistent deployments
Quick Start
Installation
bin/docker/composer install
Basic Usage
Transform a file using a transformation configuration:
bin/docker/console transformation --file examples/transformation.yaml --source data/input --workpath data/output
For detailed installation and setup instructions, see the Getting Started Guide.
Documentation
📚 Getting Started
- Installation Guide - Step-by-step setup instructions
- Quick Start Tutorial - Your first transformation
- Configuration Guide - Setting up accounts and contexts
👥 User Guide
- Running Transformations - Complete workflow guide
- Debugging & Troubleshooting - Solve common issues
- CLI Commands - Command-line reference
📖 Reference Documentation
- Actions - All available transformation actions
- Directives - Configuration directives and options
- Converters - Data format converters
- Tools - Utility tools and helpers
🔧 Developer Guide
- Architecture Overview - System design and components
- Creating Extensions - Build custom actions
- Contributing - Development guidelines
💡 Examples
- Basic Transformations - Common use cases
- Advanced Workflows - Complex transformation patterns
Configuration
Account Setup
Add API credentials and account information to your transformation files:
account: name: "my-account" username: "my-username" password: "my-password" domain: "my-domain" client_id: "my-client-id" client_secret: "my-client-secret"
Context Parameters
Define reusable parameters across transformations:
context: my-parameter: "my-value" environment: "production"
Common Commands
Basic Transformation
bin/docker/console transformation --file path/to/config.yaml --source input/dir --workpath output/dir
Debugging Options
# Debug first item bin/docker/console transformation --file config.yaml --source input --workpath output --debug # Test first 100 items bin/docker/console transformation --file config.yaml --source input --workpath output --try 100 # Show dynamic mappings bin/docker/console transformation --file config.yaml --source input --workpath output --showMappings # Process specific line bin/docker/console transformation --file config.yaml --source input --workpath output --line 100
Help and Options
bin/docker/console transformation --help
Project Structure
├── docs/ # Documentation
│ ├── getting-started/ # Installation and setup guides
│ ├── user-guide/ # User documentation
│ ├── reference/ # API and component reference
│ ├── developer-guide/ # Technical documentation
│ └── examples/ # Tutorials and examples
├── src/ # Source code
├── examples/ # Sample projects and data
├── config/ # Configuration templates
└── tests/ # Test suites
Support
- Documentation: Complete documentation
- Examples: Browse the examples directory for real-world use cases
- Issues: Report bugs and request features via the project issue tracker
License
This project is licensed under the terms specified in the project license file.