Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.32 KB

README.md

File metadata and controls

35 lines (26 loc) · 1.32 KB

Prime Shell

build codecov Packagist Version Total Downloads Type Coverage

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 !