for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spatie\Csp\Profiles;
use Spatie\Csp\Directive;
class Basic extends Profile
{
public function configure()
$this
->addDirective(Directive::CONNECT, "'self'")
->addDirective(Directive::DEFAULT, "'self'")
->addDirective(Directive::FORM_ACTION, "'self'")
->addDirective(Directive::IMG, "'self'")
->addDirective(Directive::MEDIA, "'self'")
->addDirective(Directive::SCRIPT, "'self'")
->addDirective(Directive::STYLE, "'self'");
}