File tree 7 files changed +26
-7
lines changed
7 files changed +26
-7
lines changed Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<phive xmlns =" https://phar.io/phive" >
3
- <phar name =" box" url =" https://github.com/box-project/box/releases/download/3.15 .0/box.phar" version =" 3.15 .0" installed =" 3.15 .0" location =" ./.phive/box" copy =" true" />
3
+ <phar name =" box" url =" https://github.com/box-project/box/releases/download/3.16 .0/box.phar" version =" 3.16 .0" installed =" 3.16 .0" location =" ./.phive/box" copy =" true" />
4
4
</phive >
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## [ Unreleased] - TBA
4
+ ### Added
5
+ - Added compression for composer-unused.phar. This is done to prepare composer-unused-plugin to work directly with the phar instead of composer requireent
6
+ - Added scan strategies for ` TypedAttributes ` and ` FullQualifiedParameters `
7
+ ### Fixed
8
+ ### Changed
9
+ ### Removed
10
+ ### Security
11
+ ### Deprecation
12
+
3
13
## [ Unreleased] - TBA
4
14
### Added
5
15
### Fixed
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ csfix: ## Run phpcs fixer
36
36
docker compose run php$(PHP_VERSION ) vendor/bin/phpcbf
37
37
38
38
box : # # Compile /build/composer-unused.phar
39
- docker compose run php$(PHP_VERSION ) php .phive/box compile
39
+ docker compose run php$(PHP_VERSION ) php .phive/box compile --no-parallel
40
40
41
41
ssh : # # SSH into container
42
42
docker compose run php$(PHP_VERSION ) /bin/sh
Original file line number Diff line number Diff line change 1
1
{
2
2
"base-path" : null ,
3
3
"output" : " build/composer-unused.phar" ,
4
- "php-scoper" : " scoper.inc.php" ,
5
4
"files" : [
6
5
" config/container.php" ,
7
6
" config/services.php"
7
+ ],
8
+ "compactors" : [
9
+ " KevinGH\\ Box\\ Compactor\\ PhpScoper"
8
10
]
9
11
}
Original file line number Diff line number Diff line change 33
33
34
34
$ vendorDir = dirname (UNUSED_COMPOSER_INSTALL );
35
35
36
+ $ nameSpacePrefix = '' ;
37
+ if (__NAMESPACE__ !== '' ) {
38
+ $ nameSpacePrefix = __NAMESPACE__ . '\\' ;
39
+ }
40
+
36
41
// makes classes in src/ available to be used as services
37
42
// this creates a service per class whose id is the fully-qualified class name
38
43
$ services
39
- ->load ('ComposerUnused \\ComposerUnused \\' , __DIR__ . '/../src/* ' )
40
- ->load ('ComposerUnused \\SymbolParser \\' , $ vendorDir . '/composer-unused/symbol-parser/src/* ' );
44
+ ->load ($ nameSpacePrefix . 'ComposerUnused \\ComposerUnused \\' , __DIR__ . '/../src/* ' )
45
+ ->load ($ nameSpacePrefix . 'ComposerUnused \\SymbolParser \\' , $ vendorDir . '/composer-unused/symbol-parser/src/* ' );
41
46
42
47
$ services ->set (UnusedCommand::class)->public ();
43
48
Original file line number Diff line number Diff line change 5
5
use Isolated \Symfony \Component \Finder \Finder ;
6
6
7
7
return [
8
- 'prefix ' => 'ComposerUnused ' ,
8
+ 'prefix ' => '__ComposerUnused__ ' ,
9
9
10
10
// By default when running php-scoper add-prefix, it will prefix all relevant code found in the current working
11
11
// directory. You can however define which files should be scoped by defining a collection of Finders in the
30
30
Finder::create ()->append ([
31
31
'composer.json ' ,
32
32
'config/container.php ' ,
33
- 'config/service_manager .php '
33
+ 'config/services .php '
34
34
]),
35
35
],
36
36
44
44
//
45
45
// Fore more see https://github.com/humbug/php-scoper#whitelist
46
46
'whitelist ' => [
47
+ \ComposerUnused \ComposerUnused \Configuration \Configuration::class,
48
+ \Webmozart \Glob \Glob::class
47
49
],
48
50
];
You can’t perform that action at this time.
0 commit comments