Skip to content

Commit 51638ef

Browse files
committed
Merge develop into main
2 parents 684ea49 + b01fadd commit 51638ef

930 files changed

Lines changed: 64018 additions & 124616 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![MySQL Version](https://img.shields.io/badge/MySQL-5.6%2B-4479A1.svg)](https://www.mysql.com/)
66
[![MariaDB Version](https://img.shields.io/badge/MariaDB-10.3%2B-003545.svg)](https://mariadb.org/)
77
[![PSR-12](https://img.shields.io/badge/PSR--12-Compliant-2C2C2C.svg)](https://www.php-fig.org/psr/psr-12/)
8-
[![Tests](https://img.shields.io/badge/Tests-246-44B273.svg)](https://phpunit.de/)
8+
[![Tests](https://github.com/cakmoel/Scriptlog/actions/workflows/tests.yml/badge.svg)](https://github.com/cakmoel/Scriptlog/actions/workflows/tests.yml)
99

1010
Scriptlog is a simple, secure, modular, and robust personal blogging platform. It is a refactored fork of Piluscart 1.4.1, engineered to emphasize simplicity, privacy, and security without the overhead of a complex Content Management System.
1111

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@
3535
"laminas/laminas-feed": "^2.17",
3636
"catfan/medoo": "^2.1",
3737
"symfony/mailer": "^5.4",
38-
"symfony/mime": "^5.4"
38+
"symfony/mime": "^5.4",
39+
"vlucas/phpdotenv": "^5.6"
3940
},
4041
"require-dev": {
4142
"phpunit/phpunit": "^9.5",

composer.lock

Lines changed: 305 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

phpunit.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
4-
bootstrap="src/tests/bootstrap.php"
3+
xsi:noNamespaceSchemaLocation="lib/vendor/phpunit/phpunit/phpunit.xsd"
4+
bootstrap="tests/bootstrap.php"
55
colors="true"
66
convertErrorsToExceptions="true"
77
convertNoticesToExceptions="true"
@@ -15,8 +15,8 @@
1515
>
1616
<testsuites>
1717
<testsuite name="Scriptlog Test Suite">
18-
<directory>src/tests</directory>
19-
<exclude>src/tests/TablePrefixTest.php</exclude>
18+
<directory>tests</directory>
19+
<exclude>tests/TablePrefixTest.php</exclude>
2020
</testsuite>
2121
</testsuites>
2222

0 commit comments

Comments
 (0)