Compare commits

...

3 commits

Author SHA1 Message Date
2b21c19f7a
Updated usage from net.nosial.loglib to net.nosial.loglib2
Some checks are pending
CI / check-phpunit (push) Waiting to run
CI / check-phpdoc (push) Waiting to run
CI / release (push) Waiting to run
CI / debug (push) Waiting to run
CI / generate-phpdoc (push) Blocked by required conditions
CI / test (push) Blocked by required conditions
CI / release-documentation (push) Blocked by required conditions
CI / release-artifacts (push) Blocked by required conditions
#1 (comment)
2025-03-14 15:22:50 -04:00
08e7df1388
Updated dependency references
#1 (comment)
2025-03-14 15:22:36 -04:00
9167104b9c
Updated README.md
#1 (comment)
2025-03-14 15:20:16 -04:00
4 changed files with 28 additions and 4 deletions

View file

@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [1.0.1] - 2025-03-14
This update introduces minor changes
### Changes
- Updated remote dependency references
## [1.0.0] - 2024-12-04
First initial release of the library

View file

@ -4,10 +4,26 @@ PsyncLib (`net.nosial.psynclib`) is a PHP library that introduces parallel opera
additional software such as a Message Queue or a Job Queue. Using Shared Memory & Forking, PsyncLib allows you to
create parallel operations by calling several simple functions.
## Community
This project and many others from Nosial are available on multiple publicly available and free git repositories at
- [n64](https://git.n64.cc/nosial/psynclib)
- [GitHub](https://github.com/nosial/psynclib)
- [Codeberg](https://codeberg.org/nosial/psynclib)
Issues & Pull Requests are frequently checked and to be referenced accordingly in commits and changes, Nosial remains
dedicated to keep these repositories up to date when possible.
For questions & discussions see the public Telegram community at [@NosialDiscussions](https://t.me/NosialDiscussions).
We do encourage community support and discussions, please be respectful and follow the rules of the community.
## Table of contents
<!-- TOC -->
* [PsyncLib](#psynclib)
* [Community](#community)
* [Table of contents](#table-of-contents)
* [Versioning](#versioning)
* [Installation](#installation)

View file

@ -10,7 +10,7 @@
"name": "PsyncLib",
"package": "net.nosial.psynclib",
"description": "PsyncLib is a library for synchronizing files between two directories.",
"version": "1.0.0",
"version": "1.0.1",
"uuid": "22df0cee-2eb1-4837-abbe-075933d54480"
},
"build": {
@ -29,9 +29,9 @@
"source": "symfony/uid=latest@packagist"
},
{
"name": "net.nosial.loglib",
"name": "net.nosial.loglib2",
"version": "latest",
"source": "nosial/libs.log=latest@n64"
"source": "nosial/loglib2=latest@github"
}
],
"configurations": [

View file

@ -2,7 +2,7 @@
namespace PsyncLib;
use LogLib\Logger;
use LogLib2\Logger;
use RuntimeException;
use Throwable;