Compare commits
3 commits
Author | SHA1 | Date | |
---|---|---|---|
2b21c19f7a | |||
08e7df1388 | |||
9167104b9c |
4 changed files with 28 additions and 4 deletions
|
@ -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
|
16
README.md
16
README.md
|
@ -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)
|
||||
|
|
|
@ -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": [
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace PsyncLib;
|
||||
|
||||
use LogLib\Logger;
|
||||
use LogLib2\Logger;
|
||||
use RuntimeException;
|
||||
use Throwable;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue