Skip to content

Commit 9b3ddd2

Browse files
author
Andreas Frömer
committed
Update box built using compression and prefixing
Signed-off-by: Andreas Frömer <[email protected]>
1 parent 9035d58 commit 9b3ddd2

File tree

7 files changed

+26
-7
lines changed

7 files changed

+26
-7
lines changed

.phive/box

-17 KB
Binary file not shown.

.phive/phars.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<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"/>
44
</phive>

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

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+
313
## [Unreleased] - TBA
414
### Added
515
### Fixed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ csfix: ## Run phpcs fixer
3636
docker compose run php$(PHP_VERSION) vendor/bin/phpcbf
3737

3838
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
4040

4141
ssh: ## SSH into container
4242
docker compose run php$(PHP_VERSION) /bin/sh

box.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
{
22
"base-path": null,
33
"output": "build/composer-unused.phar",
4-
"php-scoper": "scoper.inc.php",
54
"files": [
65
"config/container.php",
76
"config/services.php"
7+
],
8+
"compactors": [
9+
"KevinGH\\Box\\Compactor\\PhpScoper"
810
]
911
}

config/services.php

+7-2
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,16 @@
3333

3434
$vendorDir = dirname(UNUSED_COMPOSER_INSTALL);
3535

36+
$nameSpacePrefix = '';
37+
if (__NAMESPACE__ !== '') {
38+
$nameSpacePrefix = __NAMESPACE__ . '\\';
39+
}
40+
3641
// makes classes in src/ available to be used as services
3742
// this creates a service per class whose id is the fully-qualified class name
3843
$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/*');
4146

4247
$services->set(UnusedCommand::class)->public();
4348

scoper.inc.php

+4-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use Isolated\Symfony\Component\Finder\Finder;
66

77
return [
8-
'prefix' => 'ComposerUnused',
8+
'prefix' => '__ComposerUnused__',
99

1010
// By default when running php-scoper add-prefix, it will prefix all relevant code found in the current working
1111
// directory. You can however define which files should be scoped by defining a collection of Finders in the
@@ -30,7 +30,7 @@
3030
Finder::create()->append([
3131
'composer.json',
3232
'config/container.php',
33-
'config/service_manager.php'
33+
'config/services.php'
3434
]),
3535
],
3636

@@ -44,5 +44,7 @@
4444
//
4545
// Fore more see https://github.com/humbug/php-scoper#whitelist
4646
'whitelist' => [
47+
\ComposerUnused\ComposerUnused\Configuration\Configuration::class,
48+
\Webmozart\Glob\Glob::class
4749
],
4850
];

0 commit comments

Comments
 (0)