b2pweb / bdf-prime-shell
Interactive shell for prime queries
v1.0.1
2022-03-04 15:51 UTC
Requires
- php: ~7.1 || ~8.0.0 || ~8.1.0
- b2pweb/bdf-collections: ~1.1
- b2pweb/bdf-prime: ~1.0|~2.0
- b2pweb/bdf-prime-analyzer: ~1.0
- b2pweb/bdf-util: ~1.0
- psy/psysh: ~0.10
- symfony/console: ~4.0 || ~5.0
Requires (Dev)
- phpunit/phpunit: ~7.0|~8.0
- vimeo/psalm: ~4.0
This package is auto-updated.
Last update: 2022-05-17 14:15:41 UTC
README
Interactive shell for execute queries using prime repositories.
Usage
Install using composer
composer require b2pweb/bdf-prime-shell
Register the command into the console (symfony example) :
services: Bdf\Prime\Shell\PrimeShellCommand: class: 'Bdf\Prime\Shell\PrimeShellCommand' arguments: ['@prime'] tags: ['console.command']
Now you can execute the shell :
bin/console prime:shell -p src/Entity
The -p
option allow preloading entity classes for autocomplete.
Now you can call repositories and queries methods like in real PHP !