Compare commits

..

No commits in common. "master" and "1.0.0" have entirely different histories.

4 changed files with 4 additions and 28 deletions

View file

@ -4,14 +4,6 @@ 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/), 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). 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 ## [1.0.0] - 2024-12-04
First initial release of the library First initial release of the library

View file

@ -4,26 +4,10 @@ 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 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. 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 ## Table of contents
<!-- TOC --> <!-- TOC -->
* [PsyncLib](#psynclib) * [PsyncLib](#psynclib)
* [Community](#community)
* [Table of contents](#table-of-contents) * [Table of contents](#table-of-contents)
* [Versioning](#versioning) * [Versioning](#versioning)
* [Installation](#installation) * [Installation](#installation)

View file

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

View file

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