for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Eole\Sandstone\Tests\Integration\App;
use Eole\Sandstone\Application;
class App extends Application
{
public function __construct(array $values = array())
parent::__construct($values);
$this->register(new \Eole\Sandstone\Serializer\ServiceProvider());
$this->register(new \Eole\Sandstone\Websocket\ServiceProvider(), [
'sandstone.websocket.server' => [
'bind' => '0.0.0.0',
'port' => '8080',
],
]);
$this['serializer.builder']->addMetadataDir(
__DIR__,
'Eole\\Sandstone\\Tests\\App'
);
$this->register(new \Eole\Sandstone\Push\ServiceProvider());
}