Skip to content

Commit d5eea2a

Browse files
authored
Merge pull request #24 from macocci7/1.2.1
Refactor codes
2 parents 8651af0 + cdb0b8b commit d5eea2a

File tree

8 files changed

+433
-417
lines changed

8 files changed

+433
-417
lines changed

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
{
22
"name": "macocci7/php-boxplot",
3-
"version": "1.2.0",
3+
"version": "1.2.1",
44
"description": "it's easy to use for creating boxplots.",
55
"type": "library",
66
"require": {
77
"php": ">=8.1",
8-
"intervention/image": "^3.5",
9-
"macocci7/php-frequency-table": "1.3.0",
10-
"fakerphp/faker": "^1.22",
8+
"intervention/image": "^3.6",
9+
"macocci7/php-frequency-table": "^1.3",
10+
"fakerphp/faker": "^1.23",
1111
"nette/neon": "^3.4"
1212
},
1313
"require-dev": {
1414
"squizlabs/php_codesniffer": "^3.7",
1515
"phpunit/phpunit": "^10.5",
1616
"phpmd/phpmd": "^2.15",
1717
"phpstan/phpstan": "^1.10",
18-
"php-parallel-lint/php-parallel-lint": "^1.3"
18+
"php-parallel-lint/php-parallel-lint": "^1.4"
1919
},
2020
"license": "MIT",
2121
"autoload": {

examples/img/BoxplotExampleCase.png

311 Bytes
Loading

src/Analyzer.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
use Macocci7\PhpFrequencyTable\FrequencyTable;
66
use Macocci7\PhpBoxplot\Helpers\Config;
7-
use Macocci7\PhpBoxplot\Traits\JudgeTrait;
87

98
/**
109
* class for analysis
@@ -13,7 +12,7 @@
1312
*/
1413
class Analyzer
1514
{
16-
use JudgeTrait;
15+
use Traits\JudgeTrait;
1716

1817
public FrequencyTable $ft;
1918
/**

0 commit comments

Comments
 (0)