Skip to content

Commit 16d90c6

Browse files
committed
updated dependencies and moved to psr4 autoloading
1 parent 8e821a2 commit 16d90c6

7 files changed

+27
-5
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,9 @@ while (!empty($dataSet)) {
6969
* upcomming
7070
* @todo
7171
* implement way of measure/calculate the amount of time for next iteration
72+
* [1.0.7](https://github.com/bazzline/php_component_time_limit_manager/tree/1.0.7) - released at 07.02.2016
73+
* moved to psr-7 autoloading
74+
* updated dependencies
7275
* [1.0.6](https://github.com/bazzline/php_component_time_limit_manager/tree/1.0.6) - released at 18.11.2015
7376
* updated dependencies
7477
* [1.0.5](https://github.com/bazzline/php_component_time_limit_manager/tree/1.0.5) - released at 28.08.2015

composer.json

Lines changed: 24 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
{
22
"description": "free as in freedom php component to validate if your script is reaching the allowed maximum runtime",
3-
"keywords": ["php", "component", "runtime", "limit", "runtime limit", "maximum runtime", "time limit manager", "runtime manager", "runtime limit manager", "lgpl", "free as in freedom"],
3+
"keywords": [
4+
"php",
5+
"bazzline",
6+
"psr",
7+
"psr-4",
8+
"component",
9+
"runtime",
10+
"limit",
11+
"runtime limit",
12+
"maximum runtime",
13+
"time limit manager",
14+
"runtime manager",
15+
"runtime limit manager",
16+
"lgpl",
17+
"free as in freedom"
18+
],
419
"license": "LGPLv3",
520
"name": "net_bazzline/php_component_time_limit_manager",
621
"type": "library",
@@ -18,12 +33,16 @@
1833
},
1934
"require-dev": {
2035
"mockery/mockery": "0.9.4",
21-
"phpunit/phpunit": ">?4.8.16"
36+
"phpunit/phpunit": "~4.8||~5.1"
2237
},
2338
"autoload": {
24-
"psr-0": {
25-
"Net\\Bazzline\\Component\\TimeLimitManager": "source/",
26-
"Test\\Net\\Bazzline\\Component\\TimeLimitManager": "test/"
39+
"psr-4": {
40+
"Net\\Bazzline\\Component\\TimeLimitManager\\": "source/"
41+
}
42+
},
43+
"autoload-dev": {
44+
"psr-4": {
45+
"Test\\Net\\Bazzline\\Component\\TimeLimitManager\\": "test/"
2746
}
2847
}
2948
}

0 commit comments

Comments
 (0)