Go to file
2022-07-07 18:00:57 +00:00
.github Laravel 9 Update (#1413) 2022-03-14 11:45:18 -04:00
app Style fixes 2022-03-28 13:55:42 -04:00
bin Laravel 9 Update (#1413) 2022-03-14 11:45:18 -04:00
bootstrap Laravel 9 Update (#1413) 2022-03-14 11:45:18 -04:00
config Laravel 9 Update (#1413) 2022-03-14 11:45:18 -04:00
modules
public Laravel 9 Update (#1413) 2022-03-14 11:45:18 -04:00
resources Laravel 9 Update (#1413) 2022-03-14 11:45:18 -04:00
storage
tests Check for null/0 value on progress percent 2022-03-18 16:43:34 -04:00
.dockerignore
.editorconfig
.eslintignore
.eslintrc
.gitignore Laravel 9 Update (#1413) 2022-03-14 11:45:18 -04:00
.htaccess
.php-cs-fixer.php Add PHP 8.1 to shims and build (#1365) 2021-12-03 09:23:59 -05:00
.styleci.yml
artisan
CHANGELOG.md
composer.json Laravel 9 Update (#1413) 2022-03-14 11:45:18 -04:00
composer.lock Laravel 9 Update (#1413) 2022-03-14 11:45:18 -04:00
docker-compose.dev.yml Laravel 9 Update (#1413) 2022-03-14 11:45:18 -04:00
docker-compose.yml Laravel 9 Update (#1413) 2022-03-14 11:45:18 -04:00
Dockerfile Laravel 9 Update (#1413) 2022-03-14 11:45:18 -04:00
intellij_style.xml
LICENSE
Makefile Laravel 9 Update (#1413) 2022-03-14 11:45:18 -04:00
package-lock.json fix: package.json & package-lock.json to reduce vulnerabilities 2022-07-07 18:00:57 +00:00
package.json fix: package.json & package-lock.json to reduce vulnerabilities 2022-07-07 18:00:57 +00:00
phpstan.neon
phpunit.xml Laravel 9 Update (#1413) 2022-03-14 11:45:18 -04:00
Procfile
README.md Laravel 9 Update (#1413) 2022-03-14 11:45:18 -04:00
swagger.yml
symfony.lock Laravel 9 Update (#1413) 2022-03-14 11:45:18 -04:00
webpack.mix.js

phpVMS 7

Build Codacy Badge Latest Stable Version StyleCI License

The next phpvms version built on the laravel framework. work in progress. The latest documentation, with installation instructions is available on the phpVMS documentation page.

Installation

A full distribution, with all of the composer dependencies, is available at this GitHub Releases link.

Requirements

  • PHP 8.0+, extensions:
    • cURL
    • JSON
    • mbstring
    • openssl
    • pdo
    • tokenizer
  • Database:
    • MySQL 5.5+ (or MySQL variant, including MariaDB and Percona)

View more details on requirements

Installer

  1. Upload to your server
  2. Visit the site, and follow the link to the installer

View installation details

Development Environment with Docker

A full development environment can be brought up using Docker, without having to install composer/npm locally

make docker-test

# **OR** with docker-compose directly

docker-compose -f docker-compose.yml -f docker-compose.local.yml up

Then go to http://localhost. If you're using dnsmasq, the app container is listening on phpvms.test, or you can add to your /etc/hosts file:

127.0.0.1   phpvms.test

The docker-compose.local.yml overrides the app section in docker-compose.yml. The standard docker-compose.yml can be used if you want to deploy from the image, or as a template for your own Dockerized deployments.

Building JS/CSS assets

Yarn is required, run:

make build-assets

This will build all of the assets according to the webpack file.