Bolt\Controller\Backend\Extend::installed PHP Method

installed() public method

Partially equivalent to composer show -i
public installed ( ) : Symfony\Component\HttpFoundation\JsonResponse
return Symfony\Component\HttpFoundation\JsonResponse
    public function installed()
    {
        try {
            return $this->json($this->manager()->getAllPackages());
        } catch (\Exception $e) {
            return $this->getJsonException($e);
        }
    }