-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathecs.php
More file actions
25 lines (20 loc) · 518 Bytes
/
ecs.php
File metadata and controls
25 lines (20 loc) · 518 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
/*
* (c) 2016-2026 Julián Gutiérrez <juliangut@gmail.com>
*
* @license BSD-3-Clause
* @link https://github.com/juliangut/docker-phpdev
*/
declare(strict_types=1);
use Jgut\ECS\Config\ConfigSet83;
return (new ConfigSet83())
->setHeader(<<<'HEADER'
(c) 2016-{{year}} Julián Gutiérrez <juliangut@gmail.com>
@license BSD-3-Clause
@link https://github.com/juliangut/docker-phpdev
HEADER)
->configureBuilder()
->withPaths([
__FILE__,
__DIR__ . '/src',
]);