# DeviceBundle - [Installation](#installation) - [Validator](#validators) ## Installation **composer.json**: ```javascript "repositories": [ { "type": "vcs", "url": "ssh://git@infra.flowdat.com:222/VendorSoftwareFlowdat3/CheckSintaxBundle.git", "options": { "local_pk": "./keys/bitbucket.id_rsa" } } ], "require": { "ik/check-sintax-bundle": "dev-master" }, ``` **app/AppKernel.php**: ```php public function registerBundles() { $bundles = [ new CheckSintaxBundle\CheckSintaxBundle(), ]; . . } ```