public function performAction()
 {
     $project = new Project();
     $project->name = $this->name;
     $project->apiKey = $this->apiKey;
     $project->description = $this->description;
     $project->save();
     $this->response->success('Project ID ' . $project->id . ' created');
 }