OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
kreait
/
firebase-php
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:32:59 AM
rwxr-xr-x
📄
.editorconfig
335 bytes
08/12/2024 10:32:58 AM
rw-r--r--
📁
.git
-
08/12/2024 10:35:36 AM
rwxr-xr-x
📄
.gitattributes
454 bytes
08/12/2024 10:32:58 AM
rw-r--r--
📁
.github
-
08/12/2024 10:34:12 AM
rwxr-xr-x
📄
.gitignore
229 bytes
08/12/2024 10:32:58 AM
rw-r--r--
📁
.opensource
-
08/12/2024 10:33:24 AM
rwxr-xr-x
📄
CHANGELOG.md
20.79 KB
08/12/2024 10:32:58 AM
rw-r--r--
📄
LICENSE
1.12 KB
08/12/2024 10:32:59 AM
rw-r--r--
📄
Makefile
1.25 KB
08/12/2024 10:32:59 AM
rw-r--r--
📄
README.md
3.42 KB
08/12/2024 10:32:59 AM
rw-r--r--
📄
codecov.yml
117 bytes
08/12/2024 10:32:59 AM
rw-r--r--
📄
composer.json
2.68 KB
08/12/2024 10:32:59 AM
rw-r--r--
📁
docs
-
08/12/2024 10:34:12 AM
rwxr-xr-x
📄
ecs.php
3.86 KB
08/12/2024 10:32:59 AM
rw-r--r--
📄
phpstan.neon.dist
400 bytes
08/12/2024 10:32:59 AM
rw-r--r--
📄
phpunit.xml.dist
832 bytes
08/12/2024 10:32:59 AM
rw-r--r--
📄
rector.php
1.39 KB
08/12/2024 10:32:59 AM
rw-r--r--
📁
src
-
08/12/2024 10:34:12 AM
rwxr-xr-x
📁
tests
-
08/12/2024 10:34:14 AM
rwxr-xr-x
Editing: rector.php
Close
<?php /** * @noinspection DevelopmentDependenciesUsageInspection * @noinspection TransitiveDependenciesUsageInspection */ declare(strict_types=1); use Rector\Core\Configuration\Option; use Rector\Core\ValueObject\PhpVersion; use Rector\Php74\Rector\Closure\ClosureToArrowFunctionRector; use Rector\Php74\Rector\Property\TypedPropertyRector; use Rector\Set\ValueObject\SetList; use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator; return static function (ContainerConfigurator $containerConfigurator): void { // get parameters $parameters = $containerConfigurator->parameters(); $parameters->set(Option::PATHS, [ __DIR__.'/src', __DIR__.'/tests', __FILE__, ]); $parameters->set(Option::PHP_VERSION_FEATURES, PhpVersion::PHP_74); $parameters->set(Option::SKIP, [ ClosureToArrowFunctionRector::class => [ __DIR__.'/src/Firebase/Http/Middleware.php' ], ]); // Define what rule sets will be applied $containerConfigurator->import(SetList::CODE_QUALITY); $containerConfigurator->import(SetList::DEAD_CODE); $containerConfigurator->import(SetList::PHP_74); // get services (needed for register a single rule) // $services = $containerConfigurator->services(); // register a single rule // $services->set(TypedPropertyRector::class); };