Compare commits

...
Sign in to create a new pull request.

6 commits
dev ... master

Author SHA1 Message Date
yolanmees
e1cdf8c4b7
Update phpunit.xml 2024-12-02 14:42:04 +01:00
yolanmees
ada0a2e131
Update .styleci.yml 2024-12-02 14:41:30 +01:00
yolanmees
c40833a0c0
Delete server.php 2024-12-02 14:40:11 +01:00
yolanmees
1d4190756a
Update README.md 2024-10-08 15:44:00 +02:00
yolanmees
bdcc0fc0de
Update README.md 2024-09-28 01:39:48 +02:00
yolanmees
95d6aab169
Update README.md 2024-09-28 01:36:31 +02:00
4 changed files with 22 additions and 45 deletions

View file

@ -5,9 +5,5 @@ php:
finder:
not-name:
- index.php
- server.php
js:
finder:
not-name:
- webpack.mix.js
js: true
css: true

View file

@ -65,7 +65,7 @@ To correctly manage remote servers Spikster has to be on a public IP address (IP
## Spikster LEMP environment
- nginx: 1.18
- PHP-FPM: 8.2, 8.1, 8.0, 7.4
- PHP-FPM: 8.3, 8.2, 8.1, 8.0, 7.4
- MySql: 8
- node: 16
- npm: 8
@ -73,11 +73,11 @@ To correctly manage remote servers Spikster has to be on a public IP address (IP
## Screenshots
<img src="https://spikster.com/images/docs/server.png">
![](https://spikster.com/images/Spikster-server-overview.png)
<img src="https://spikster.com/images/docs/site.png">
![](https://spikster.com/images/Spikster-site-overview.png)
<img src="https://spikster.com/images/docs/cron.png">
![](https://spikster.com/images/Spikster-wordpress.png)
## Why use Spikster?
Spikster is easy, stable, powerful and free for any personal and commercial use and it's a perfect alternative to Cpanel, Plesk, Runcloud, CyberPanel, DirectAdmin, Forge and similar software...

View file

@ -1,31 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
>
<testsuites>
<testsuite name="Unit">
<directory suffix="Test.php">./tests/Unit</directory>
<directory>tests/Unit</directory>
</testsuite>
<testsuite name="Feature">
<directory suffix="Test.php">./tests/Feature</directory>
<directory>tests/Feature</directory>
</testsuite>
</testsuites>
<coverage processUncoveredFiles="true">
<source>
<include>
<directory suffix=".php">./app</directory>
<directory>app</directory>
</include>
</coverage>
</source>
<php>
<server name="APP_ENV" value="testing"/>
<server name="BCRYPT_ROUNDS" value="4"/>
<server name="CACHE_DRIVER" value="array"/>
<!-- <server name="DB_CONNECTION" value="sqlite"/> -->
<!-- <server name="DB_DATABASE" value=":memory:"/> -->
<server name="MAIL_MAILER" value="array"/>
<server name="QUEUE_CONNECTION" value="sync"/>
<server name="SESSION_DRIVER" value="array"/>
<server name="TELESCOPE_ENABLED" value="false"/>
<env name="APP_ENV" value="testing"/>
<env name="APP_MAINTENANCE_DRIVER" value="file"/>
<env name="BCRYPT_ROUNDS" value="4"/>
<env name="CACHE_STORE" value="array"/>
<!-- <env name="DB_CONNECTION" value="sqlite"/> -->
<!-- <env name="DB_DATABASE" value=":memory:"/> -->
<env name="MAIL_MAILER" value="array"/>
<env name="PULSE_ENABLED" value="false"/>
<env name="QUEUE_CONNECTION" value="sync"/>
<env name="SESSION_DRIVER" value="array"/>
<env name="TELESCOPE_ENABLED" value="false"/>
</php>
</phpunit>

View file

@ -1,21 +0,0 @@
<?php
/**
* Laravel - A PHP Framework For Web Artisans
*
* @package Laravel
* @author Taylor Otwell <taylor@laravel.com>
*/
$uri = urldecode(
parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH)
);
// This file allows us to emulate Apache's "mod_rewrite" functionality from the
// built-in PHP web server. This provides a convenient way to test a Laravel
// application without having installed a "real" web server software here.
if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) {
return false;
}
require_once __DIR__.'/public/index.php';