OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
guzzlehttp
/
guzzle
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:32:57 AM
rwxr-xr-x
📄
.editorconfig
360 bytes
08/12/2024 10:32:56 AM
rw-r--r--
📁
.git
-
08/12/2024 10:35:29 AM
rwxr-xr-x
📄
.gitattributes
570 bytes
08/12/2024 10:32:56 AM
rw-r--r--
📁
.github
-
08/12/2024 10:34:06 AM
rwxr-xr-x
📄
.gitignore
163 bytes
08/12/2024 10:32:56 AM
rw-r--r--
📄
.php-cs-fixer.dist.php
842 bytes
08/12/2024 10:32:56 AM
rw-r--r--
📄
CHANGELOG.md
87.32 KB
08/12/2024 10:32:57 AM
rw-r--r--
📄
Dockerfile
363 bytes
08/12/2024 10:32:57 AM
rw-r--r--
📄
LICENSE
1.45 KB
08/12/2024 10:32:57 AM
rw-r--r--
📄
Makefile
2.75 KB
08/12/2024 10:32:57 AM
rw-r--r--
📄
README.md
5.01 KB
08/12/2024 10:32:57 AM
rw-r--r--
📄
UPGRADING.md
53.59 KB
08/12/2024 10:32:57 AM
rw-r--r--
📄
composer.json
3.91 KB
08/12/2024 10:32:57 AM
rw-r--r--
📁
docs
-
08/12/2024 10:34:06 AM
rwxr-xr-x
📄
phpstan-baseline.neon
6.5 KB
08/12/2024 10:32:57 AM
rw-r--r--
📄
phpstan.neon.dist
315 bytes
08/12/2024 10:32:57 AM
rw-r--r--
📄
phpunit.xml.dist
883 bytes
08/12/2024 10:32:57 AM
rw-r--r--
📄
psalm-baseline.xml
12.11 KB
08/12/2024 10:32:57 AM
rw-r--r--
📄
psalm.xml
563 bytes
08/12/2024 10:32:57 AM
rw-r--r--
📁
src
-
08/12/2024 10:34:07 AM
rwxr-xr-x
📁
tests
-
08/12/2024 10:34:08 AM
rwxr-xr-x
📁
vendor-bin
-
08/12/2024 10:34:08 AM
rwxr-xr-x
Editing: Makefile
Close
help: @echo "Please use \`make <target>' where <target> is one of" @echo " start-server to start the test server" @echo " stop-server to stop the test server" @echo " test to perform unit tests. Provide TEST to perform a specific test." @echo " coverage to perform unit tests with code coverage. Provide TEST to perform a specific test." @echo " coverage-show to show the code coverage report" @echo " clean to remove build artifacts" @echo " docs to build the Sphinx docs" @echo " docs-show to view the Sphinx docs" @echo " static to run phpstan and php-cs-fixer on the codebase" @echo " static-phpstan to run phpstan on the codebase" @echo " static-phpstan-update-baseline to regenerate the phpstan baseline file" @echo " static-codestyle-fix to run php-cs-fixer on the codebase, writing the changes" @echo " static-codestyle-check to run php-cs-fixer on the codebase" start-server: stop-server node tests/server.js &> /dev/null & ./vendor/bin/http_test_server &> /dev/null & stop-server: @PID=$(shell ps axo pid,command \ | grep 'tests/server.js' \ | grep -v grep \ | cut -f 1 -d " "\ ) && [ -n "$$PID" ] && kill $$PID || true @PID=$(shell ps axo pid,command \ | grep 'vendor/bin/http_test_server' \ | grep -v grep \ | cut -f 1 -d " "\ ) && [ -n "$$PID" ] && kill $$PID || true test: start-server vendor/bin/phpunit $(MAKE) stop-server coverage: start-server vendor/bin/phpunit --coverage-html=build/artifacts/coverage $(MAKE) stop-server coverage-show: view-coverage view-coverage: open build/artifacts/coverage/index.html clean: rm -rf artifacts/* docs: cd docs && make html && cd .. docs-show: open docs/_build/html/index.html static: static-phpstan static-psalm static-codestyle-check static-psalm: composer install composer bin psalm update vendor/bin/psalm.phar $(PSALM_PARAMS) static-psalm-update-baseline: composer install composer bin psalm update $(MAKE) static-psalm PSALM_PARAMS="--set-baseline=psalm-baseline.xml" static-phpstan: composer install composer bin phpstan update vendor/bin/phpstan analyze $(PHPSTAN_PARAMS) static-phpstan-update-baseline: composer install composer bin phpstan update $(MAKE) static-phpstan PHPSTAN_PARAMS="--generate-baseline" static-codestyle-fix: composer install composer bin php-cs-fixer update vendor/bin/php-cs-fixer fix --diff $(CS_PARAMS) static-codestyle-check: $(MAKE) static-codestyle-fix CS_PARAMS="--dry-run" .PHONY: docs coverage-show view-coverage