Skip to content

Commit

Permalink
Bridge readme update
Browse files Browse the repository at this point in the history
  • Loading branch information
Maximilien committed Jun 11, 2024
1 parent 99ca853 commit 96ba5b5
Show file tree
Hide file tree
Showing 11 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion src/batch-doctrine-dbal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ composer require yokai/batch-doctrine-dbal

This package provides:

- a [job execution storage](docs/job-execution-storage.md) that stores job executions to a relational database
- a [job execution storage](https://github.com/yokai-php/batch-src/blob/0.x/docs/batch-doctrine-dbal/job-execution-storage.md) that stores job executions to a relational database


## Contribution
Expand Down
2 changes: 1 addition & 1 deletion src/batch-doctrine-orm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ composer require yokai/batch-doctrine-orm

This package provides:

- an [item reader](docs/entity-item-reader.md) that read entities from entity manager
- an [item reader](https://github.com/yokai-php/batch-src/blob/0.x/docs/batch-doctrine-orm/entity-item-reader.md) that read entities from entity manager


## Contribution
Expand Down
4 changes: 2 additions & 2 deletions src/batch-doctrine-persistence/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ composer require yokai/batch-doctrine-persistence

This package provides:

- an [item writer](docs/object-item-writer.md) that persists objects through object manager
- an [object registry](docs/object-registry.md) that remembers found objects identities
- an [item writer](https://github.com/yokai-php/batch-src/blob/0.x/docs/batch-doctrine-persistence/object-item-writer.md) that persists objects through object manager
- an [object registry](https://github.com/yokai-php/batch-src/blob/0.x/docs/batch-doctrine-persistence/object-registry.md) that remembers found objects identities


## Contribution
Expand Down
4 changes: 2 additions & 2 deletions src/batch-league-flysystem/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ composer require yokai/batch-league-flysystem

This package provides:

- a [job](docs/copy-files-job.md) that copy file(s) from one filesystem to another
- a [job](docs/move-files-job.md) that move file(s) from one filesystem to another
- a [job](https://github.com/yokai-php/batch-src/blob/0.x/docs/batch-league-flysystem/copy-files-job.md) that copy file(s) from one filesystem to another
- a [job](https://github.com/yokai-php/batch-src/blob/0.x/docs/batch-league-flysystem/move-files-job.md) that move file(s) from one filesystem to another


## Contribution
Expand Down
4 changes: 2 additions & 2 deletions src/batch-openspout/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ composer require yokai/batch-openspout

This package provides:

- a [item reader](docs/flat-file-item-reader.md) that read from CSV/XLSX/ODS files
- a [item writer](docs/flat-file-item-writer.md) that write to CSV/XLSX/ODS files
- a [item reader](https://github.com/yokai-php/batch-src/blob/0.x/docs/batch-openspout/flat-file-item-reader.md) that read from CSV/XLSX/ODS files
- a [item writer](https://github.com/yokai-php/batch-src/blob/0.x/docs/batch-openspout/flat-file-item-writer.md) that write to CSV/XLSX/ODS files


## Contribution
Expand Down
4 changes: 2 additions & 2 deletions src/batch-symfony-console/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ composer require yokai/batch-symfony-console

This package provides:

- a [job launcher](docs/job-launcher.md) that uses command to launch jobs
- a [command](docs/command.md) to launch jobs
- a [job launcher](https://github.com/yokai-php/batch-src/blob/0.x/docs/batch-symfony-console/job-launcher.md) that uses command to launch jobs
- a [command](https://github.com/yokai-php/batch-src/blob/0.x/docs/batch-symfony-console/command.md) to launch jobs


## Contribution
Expand Down
4 changes: 2 additions & 2 deletions src/batch-symfony-framework/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ composer require yokai/batch-symfony-framework

This package provides:

- [integration](docs/getting-started.md) with Symfony framework
- a [UI](docs/ui.md) with Symfony framework
- [integration](https://github.com/yokai-php/batch-src/blob/0.x/docs/batch-symfony-framework/getting-started.md) with Symfony framework
- a [UI](https://github.com/yokai-php/batch-src/blob/0.x/docs/batch-symfony-framework/ui.md) with Symfony framework


## Contribution
Expand Down
4 changes: 2 additions & 2 deletions src/batch-symfony-messenger/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ composer require yokai/batch-symfony-messenger

This package provides:

- a [job launcher](docs/job-launcher.md) that uses messages to launch jobs
- a [writer](docs/dispatch-each-item-writer.md) that will write each item as a message
- a [job launcher](https://github.com/yokai-php/batch-src/blob/0.x/docs/batch-symfony-messenger/job-launcher.md) that uses messages to launch jobs
- a [writer](https://github.com/yokai-php/batch-src/blob/0.x/docs/batch-symfony-messenger/dispatch-each-item-writer.md) that will write each item as a message


## Contribution
Expand Down
6 changes: 3 additions & 3 deletions src/batch-symfony-serializer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ composer require yokai/batch-symfony-serializer

This package provides:

- an [item processor](docs/normalize-item-processor.md) that uses normalization
- an [item processor](docs/denormalize-item-processor.md) that uses denormalization
- a [job execution serializer](docs/job-execution-serializer.md) that uses serialization
- an [item processor](https://github.com/yokai-php/batch-src/blob/0.x/docs/batch-symfony-serializer/normalize-item-processor.md) that uses normalization
- an [item processor](https://github.com/yokai-php/batch-src/blob/0.x/docs/batch-symfony-serializer/denormalize-item-processor.md) that uses denormalization
- a [job execution serializer](https://github.com/yokai-php/batch-src/blob/0.x/docs/batch-symfony-serializer/job-execution-serializer.md) that uses serialization


## Contribution
Expand Down
2 changes: 1 addition & 1 deletion src/batch-symfony-validator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ composer require yokai/batch-symfony-validator

This package provides:

- an [item processor](docs/skip-invalid-item-processor.md) that skip invalid items
- an [item processor](https://github.com/yokai-php/batch-src/blob/0.x/docs/batch-symfony-validator/skip-invalid-item-processor.md) that skip invalid items


## Contribution
Expand Down
6 changes: 3 additions & 3 deletions src/batch/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ composer require yokai/batch

## Documentation

Let's [get started](docs/getting-started.md) around core concepts of this library.
Let's [get started](https://github.com/yokai-php/batch-src/blob/0.x/docs/batch/getting-started.md) around core concepts of this library.

Looking for something in particular ?

- [How to use *Aware interfaces ?](docs/recipes/aware-interfaces.md)
- [Create your own job execution storage](docs/recipes/custom-job-execution-storage.md)
- [How to use *Aware interfaces ?](https://github.com/yokai-php/batch-src/blob/0.x/docs/batch/recipes/aware-interfaces.md)
- [Create your own job execution storage](https://github.com/yokai-php/batch-src/blob/0.x/docs/batch/recipes/custom-job-execution-storage.md)

Looking for something more specific ?

Expand Down

0 comments on commit 96ba5b5

Please sign in to comment.