Skip to content

Commit

Permalink
Added JSONPlus and newer version of deverm-router and more
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianFun123 committed Oct 5, 2021
1 parent 932b1d1 commit 42de559
Show file tree
Hide file tree
Showing 25 changed files with 26 additions and 48 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/testing
/modules
/uppm.locks.json
/uppm.locks.json
vendor
.idea
composer.lock
10 changes: 6 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
{
"name": "interaapps/ulole",
"type": "library",
"version": "3.0.5",
"version": "3.0.6",
"authors": [
{
"name": "JulianFun123",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0.0",
"interaapps/uloleorm": "^2.0"
"php": ">=8.0.0",
"interaapps/uloleorm": "2.0.1",
"interaapps/jsonplus": "1.0.0",
"interaapps/deverm": "5.0.5"
},
"autoload": {
"psr-4": {
"de\\interaapps\\ulole\\core\\": "./de/interaapps/ulole/core"
"de\\interaapps\\ulole\\core\\": "src/main/de/interaapps/ulole/core"
}
}
}
20 changes: 0 additions & 20 deletions de/interaapps/ulole/core/traits/JSONModel.php

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -60,21 +60,12 @@ public function handleAll() : array {
return $errors;
}

/**
* @param string $mode
* @return JobHandler
*/
public function setMode(string $mode): JobHandler
{
public function setMode(string $mode): JobHandler {
$this->mode = $mode;
return $this;
}

/**
* @return string
*/
public function getMode(): string
{
public function getMode(): string {
return $this->mode;
}
}
File renamed without changes.
26 changes: 14 additions & 12 deletions uppm.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
{
"name": "ulole",
"version": "3.0.5",
"description": "",
"author": "",
"keywords": [
""
],
"modules": {},
"namespaces": {},
"namespace_bindings": {
"de\\interaapps\\ulole\\core": "de/interaapps/ulole/core"
"name": "ulole-core",
"version": "3.0.6",
"repositories": [],
"run": {},
"build": {},
"serve": {},
"modules": {
"interaapps\/jsonplus": "1.0.0",
"uloleorm": "2.0.1",
"deverm": "5.0.2"
},
"namespaceBindings": {
"de\\interaapps\\ulole\\core": "src/main/de\/interaapps\/ulole\/core"
}
}
}

0 comments on commit 42de559

Please sign in to comment.