Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 6 additions & 11 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,9 @@
# Change Log

All notable changes to this project will be documented in this file.

# 2.1
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).

- Minimum php version 7.4
- Fix php 8.0 compatibilites for NativeArray
- Adapt code style for php 7.4, adding types
## [Unreleased]

# 2.0

- All classes are declared under Sentiweb\Rserve namespace allowing PSR-4 autoloading
- Parsers are now individualized into classes
- A Parser instance can be directly used as second argument of evalString() to replace default parser (see example)

# Before TDB
Initial release. Forked from https://github.com/cturbelin/rserve-php. This is v2.1 of that package, adapted to PHP 7.3.
74 changes: 37 additions & 37 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,39 +1,39 @@
{
"name": "cturbelin/rserve-php",
"type": "library",
"description": "Rserve client library for PHP",
"keywords": ["R","Rserve","Stats"],
"homepage": "https://github.com/cturbelin/rserve-php",
"licence": "LGPL-2.1",
"authors": [
{
"name": "Clément Turbelin",
"email": "clement.turbelin@gmail.com"
}
],
"require": {
"php": ">=7.4"
},
"require-dev": {
"phpunit/phpunit": "^9",
"symplify/easy-coding-standard": "^12.0"
},
"autoload": {
"files": ["src/lib/helpers.php"],
"psr-4": {
"Sentiweb\\Rserve\\": "src/",
"Sentiweb\\Rserve\\Tests\\":"tests/"
}
},
"autoload-dev": {
"psr-4" : {
"Sentiweb\\Rserve\\Tests\\":"tests/"
}
},
"scripts": {
"test": [
"parallel-lint . --exclude vendor --exclude doc",
"phpunit --verbose"
]
}
"name": "piogaw/rserve-php",
"type": "library",
"description": "Rserve client library for PHP",
"keywords": ["R", "Rserve", "Stats"],
"homepage": "https://github.com/cturbelin/rserve-php",
"licence": "LGPL-2.1",
"authors": [
{
"name": "Clément Turbelin",
"email": "clement.turbelin@gmail.com"
}
],
"require": {
"php": ">=7.3"
},
"require-dev": {
"phpunit/phpunit": "^9",
"symplify/easy-coding-standard": "^12.0"
},
"autoload": {
"files": ["src/lib/helpers.php"],
"psr-4": {
"Sentiweb\\Rserve\\": "src/",
"Sentiweb\\Rserve\\Tests\\": "tests/"
}
},
"autoload-dev": {
"psr-4": {
"Sentiweb\\Rserve\\Tests\\": "tests/"
}
},
"scripts": {
"test": [
"parallel-lint . --exclude vendor --exclude doc",
"phpunit --verbose"
]
}
}
Loading