OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
stella-maris
/
clock
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:33:05 AM
rwxr-xr-x
📄
.editorconfig
229 bytes
08/12/2024 10:33:05 AM
rw-r--r--
📁
.git
-
08/12/2024 10:36:13 AM
rwxr-xr-x
📄
.gitattributes
163 bytes
08/12/2024 10:33:05 AM
rw-r--r--
📄
.gitignore
46 bytes
08/12/2024 10:33:05 AM
rw-r--r--
📄
.gitlab-ci.yml
801 bytes
08/12/2024 10:33:05 AM
rw-r--r--
📁
.phive
-
08/12/2024 10:33:36 AM
rwxr-xr-x
📄
LICENSE.md
1.06 KB
08/12/2024 10:33:06 AM
rw-r--r--
📄
README.md
2.44 KB
08/12/2024 10:33:06 AM
rw-r--r--
📄
composer.json
488 bytes
08/12/2024 10:33:05 AM
rw-r--r--
📄
phpunit.xml.dist
898 bytes
08/12/2024 10:33:06 AM
rw-r--r--
📁
src
-
08/12/2024 10:33:36 AM
rwxr-xr-x
📁
tests
-
08/12/2024 10:33:36 AM
rwxr-xr-x
Editing: .gitlab-ci.yml
Close
stages: - test - build include: - template: Composer.gitlab-ci.yml # Select what we should cache between builds cache: paths: - vendor/ - tools/ # Run our tests # If Xdebug was installed you can generate a coverage report and see code coverage metrics. test: image: registry.gitlab.com/stella-maris/php-containers/php8.1 before_script: - phive install --trust-gpg-keys 0x4AA394086372C20A,0x12CE0F1D262429A5,0x31C7E470E2138192 - composer install script: - tools/phpunit --configuration phpunit.xml.dist # Publish composer package to the GitLab package registry # Extends the default GitLab template located at https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Composer.gitlab-ci.yml publish: only: - tags