OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
lcobucci
/
clock
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:33:00 AM
rwxr-xr-x
📁
.git
-
08/12/2024 10:35:48 AM
rwxr-xr-x
📄
.gitattributes
279 bytes
08/12/2024 10:32:59 AM
rw-r--r--
📁
.github
-
08/12/2024 10:34:16 AM
rwxr-xr-x
📄
.gitignore
117 bytes
08/12/2024 10:32:59 AM
rw-r--r--
📄
LICENSE
1.07 KB
08/12/2024 10:33:00 AM
rw-r--r--
📄
Makefile
805 bytes
08/12/2024 10:33:00 AM
rw-r--r--
📄
README.md
2.57 KB
08/12/2024 10:33:00 AM
rw-r--r--
📄
composer.json
1.01 KB
08/12/2024 10:32:59 AM
rw-r--r--
📄
composer.lock
173.94 KB
08/12/2024 10:33:00 AM
rw-r--r--
📄
infection.json.dist
212 bytes
08/12/2024 10:33:00 AM
rw-r--r--
📄
phpcs.xml.dist
443 bytes
08/12/2024 10:33:00 AM
rw-r--r--
📄
phpstan.neon.dist
72 bytes
08/12/2024 10:33:00 AM
rw-r--r--
📄
phpunit.xml.dist
990 bytes
08/12/2024 10:33:00 AM
rw-r--r--
📁
src
-
08/12/2024 10:33:25 AM
rwxr-xr-x
📁
test
-
08/12/2024 10:33:26 AM
rwxr-xr-x
Editing: Makefile
Close
PARALLELISM := $(shell nproc) .PHONY: all all: install phpcbf phpcs phpstan phpunit infection .PHONY: install install: vendor/composer/installed.json vendor/composer/installed.json: composer.json composer.lock @composer install $(INSTALL_FLAGS) @touch -c composer.json composer.lock vendor/composer/installed.json .PHONY: phpunit phpunit: @vendor/bin/phpunit .PHONY: infection infection: @vendor/bin/phpunit --coverage-xml=build/coverage-xml --log-junit=build/junit.xml $(PHPUNIT_FLAGS) @vendor/bin/infection -s --threads=$(PARALLELISM) --coverage=build .PHONY: phpcbf phpcbf: @vendor/bin/phpcbf --parallel=$(PARALLELISM) .PHONY: phpcs phpcs: @vendor/bin/phpcs --parallel=$(PARALLELISM) $(PHPCS_FLAGS) .PHONY: phpstan phpstan: @vendor/bin/phpstan analyse