2017-06-11 08:15:15 -05:00
2017-06-08 13:28:26 -05:00
2017-06-10 22:50:53 -05:00
2017-06-08 13:28:26 -05:00
2017-06-10 18:41:35 -05:00
2017-06-07 18:43:25 -05:00
2017-06-08 22:50:22 -05:00
2017-06-10 22:50:53 -05:00
2017-06-08 23:08:31 -05:00
2017-06-08 13:28:26 -05:00
2017-06-10 22:50:53 -05:00
2017-06-07 18:43:25 -05:00
2017-06-08 13:28:26 -05:00
2017-06-07 18:35:27 -05:00
2017-06-08 13:28:26 -05:00
2017-06-11 08:15:15 -05:00
2017-06-08 13:28:26 -05:00

phpvms 4

Build Status Total Downloads Latest Stable Version Latest Unstable Version License

The next phpvms version built on the laravel framework. work in progress. If you're looking for the old, phpVMS classic, it's available here.

installation

run the following commands. for right now, we're running on sqlite. for mysql, set DB_CONNECTION to mysql in the .env file, and skip the sqlite3 step below.

cp .env.example .env
composer install --no-interaction
sqlite3 database/testing.sqlite ""
php artisan migrate:refresh --seed

then point your webserver to the /public folder. for example, in nginx:

server {
    listen 80 default_server;
    listen [::]:80 default_server ipv6only=on;

    root /var/www/laravel/public;
    index index.php index.html index.htm;

    server_name localhost;

    location / {
            try_files $uri $uri/ =404;
    }
}

see this article for more detailed instructions.

(TODO: redis information, etc)

license

phpVMS is open-sourced software licensed under the The 3-Clause BSD License.

Languages
PHP 69.1%
Blade 18%
SCSS 10.2%
JavaScript 2.2%
Shell 0.2%
Other 0.3%