15 lines
265 B
PHP
15 lines
265 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Lendable\ComposerLicenseChecker\LicenseConfigurationBuilder;
|
|
|
|
return new LicenseConfigurationBuilder()
|
|
->addLicenses(
|
|
'MIT',
|
|
'BSD-2-Clause',
|
|
'BSD-3-Clause',
|
|
'Apache-2.0',
|
|
)
|
|
->build();
|