-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathscoper.inc.php
More file actions
31 lines (29 loc) · 890 Bytes
/
scoper.inc.php
File metadata and controls
31 lines (29 loc) · 890 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
26
27
28
29
30
31
<?php
use Isolated\Symfony\Component\Finder\Finder;
return [
'prefix' => 'AC\Vendor',
'finders' => [
Finder::create()
->files()
->ignoreVCS(true)
->in('vendor'),
Finder::create()->append([
'composer.json',
]),
],
'exclude-files' => [
'vendor/php-di/php-di/src/Compiler/Template.php',
],
'patchers' => [],
'exclude-namespaces' => [],
'exclude-classes' => [],
'exclude-functions' => [],
'exclude-constants' => [],
'expose-global-constants' => true,
'expose-global-classes' => true,
'expose-global-functions' => true,
'expose-namespaces' => [],
'expose-classes' => [],
'expose-functions' => [],
'expose-constants' => [],
];