generated from ergebnis/php-package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
autoloader.php
48 lines (36 loc) · 1.25 KB
/
autoloader.php
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
declare(strict_types=1);
/**
* Copyright (c) 2023-2024 Andreas Möller
*
* For the full copyright and license information, please view
* the LICENSE.md file that was distributed with this source code.
*
* @see https://github.com/localheinz/organizing-test-code-in-php
*/
use Composer\InstalledVersions;
use Localheinz\OrganizingTestCodeInPhp;
$actual = require __DIR__ . '/vendor/composer/autoload_classmap.php';
$expected = [
InstalledVersions::class => __DIR__ . '/vendor/composer/InstalledVersions.php',
OrganizingTestCodeInPhp\Example::class => __DIR__ . '/src/Example.php',
OrganizingTestCodeInPhp\ValueCanNotBeBlank::class => __DIR__ . '/src/ValueCanNotBeBlank.php',
OrganizingTestCodeInPhp\ValueCanNotBeEmpty::class => __DIR__ . '/src/ValueCanNotBeEmpty.php',
];
$diff = \array_diff_assoc(
$actual,
$expected,
);
if ([] !== $diff) {
echo 'Autoloader configures the following classes that are not intended for production use:' . \PHP_EOL . \PHP_EOL;
foreach (\array_keys($diff) as $className) {
echo \sprintf(
'- %s' . \PHP_EOL,
$className,
);
}
echo \PHP_EOL;
exit(1);
}
echo 'Autoloader configures only classes intended for production use!' . \PHP_EOL;
exit(0);