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: Makefile
Close
.DEFAULT_GOAL:= help .PHONY: tests tests: phpstan unit-tests integration-tests .PHONY: phpstan phpstan: ## Performs static code analysis vendor/bin/phpstan analyse .PHONY: unit-tests unit-tests: ## Executes the unit test suite vendor/bin/phpunit -v --testsuite unit .PHONY: integration-tests integration-tests: ## Executes the integration test suite vendor/bin/phpunit -v --testsuite integration .PHONY: coverage coverage: ## Executes the test suite and generates code coverage reports php -dxdebug.mode=coverage vendor/bin/phpunit -v --coverage-html=build/coverage .PHONY: view-coverage view-coverage: ## Shows the code coverage report php -S localhost:1337 -t build/coverage .PHONY: docs docs: ## Builds the documentation $(MAKE) -C docs html .PHONY: view-docs view-docs: ## Shows the documentation php -S localhost:1338 -t docs/_build/html .PHONY: cs cs: ## Applies coding standards vendor/bin/ecs check --fix .PHONY: rector rector: ## Applies rector rules vendor/bin/rector process .PHONY: clean clean: rm -rf build/* rm -rf docs/_build/* .PHONY: help help: @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-16s\033[0m %s\n", $$1, $$2}'