OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
kreait
/
firebase-tokens
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:32:59 AM
rwxr-xr-x
📄
.editorconfig
320 bytes
08/12/2024 10:32:59 AM
rw-r--r--
📁
.git
-
08/12/2024 10:35:46 AM
rwxr-xr-x
📄
.gitattributes
338 bytes
08/12/2024 10:32:59 AM
rw-r--r--
📁
.github
-
08/12/2024 10:34:14 AM
rwxr-xr-x
📄
.gitignore
158 bytes
08/12/2024 10:32:59 AM
rw-r--r--
📄
.php-cs-fixer.dist.php
2.41 KB
08/12/2024 10:32:59 AM
rw-r--r--
📄
CHANGELOG.md
5.18 KB
08/12/2024 10:32:59 AM
rw-r--r--
📄
LICENSE
1.12 KB
08/12/2024 10:32:59 AM
rw-r--r--
📄
MIGRATE-1.x-to-2.0.md
3.79 KB
08/12/2024 10:32:59 AM
rw-r--r--
📄
Makefile
672 bytes
08/12/2024 10:32:59 AM
rw-r--r--
📄
README.md
6.84 KB
08/12/2024 10:32:59 AM
rw-r--r--
📄
composer.json
2.21 KB
08/12/2024 10:32:59 AM
rw-r--r--
📄
phpstan.neon.dist
415 bytes
08/12/2024 10:32:59 AM
rw-r--r--
📄
phpunit.xml.dist
689 bytes
08/12/2024 10:32:59 AM
rw-r--r--
📄
rector.php
931 bytes
08/12/2024 10:32:59 AM
rw-r--r--
📁
src
-
08/12/2024 10:36:28 AM
rwxr-xr-x
📁
tests
-
08/12/2024 10:36:29 AM
rwxr-xr-x
Editing: Makefile
Close
.DEFAULT_GOAL:= help .PHONY: phpstan tests coverage view-coverage cs phpstan: ## Performs a static analysis vendor/bin/phpstan tests: phpstan ## Executes the test suite vendor/bin/phpunit coverage: ## Executes the test suite and generates code coverage reports php -dxdebug.mode=coverage vendor/bin/phpunit -v --coverage-html=build/coverage view-coverage: ## Shows the code coverage report php -S localhost:1337 -t build/coverage cs: ## Fixes coding standard problems vendor/bin/php-cs-fixer fix help: @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-16s\033[0m %s\n", $$1, $$2}'