Skip to content

Commit

Permalink
Refactor codes
Browse files Browse the repository at this point in the history
  • Loading branch information
macocci7 committed Apr 20, 2024
1 parent b43e542 commit cdb0b8b
Show file tree
Hide file tree
Showing 7 changed files with 433 additions and 417 deletions.
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
{
"name": "macocci7/php-boxplot",
"version": "1.2.0",
"version": "1.2.1",
"description": "it's easy to use for creating boxplots.",
"type": "library",
"require": {
"php": ">=8.1",
"intervention/image": "^3.5",
"macocci7/php-frequency-table": "1.3.0",
"fakerphp/faker": "^1.22",
"intervention/image": "^3.6",
"macocci7/php-frequency-table": "^1.3",
"fakerphp/faker": "^1.23",
"nette/neon": "^3.4"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7",
"phpunit/phpunit": "^10.5",
"phpmd/phpmd": "^2.15",
"phpstan/phpstan": "^1.10",
"php-parallel-lint/php-parallel-lint": "^1.3"
"php-parallel-lint/php-parallel-lint": "^1.4"
},
"license": "MIT",
"autoload": {
Expand Down
3 changes: 1 addition & 2 deletions src/Analyzer.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

use Macocci7\PhpFrequencyTable\FrequencyTable;
use Macocci7\PhpBoxplot\Helpers\Config;
use Macocci7\PhpBoxplot\Traits\JudgeTrait;

/**
* class for analysis
Expand All @@ -13,7 +12,7 @@
*/
class Analyzer
{
use JudgeTrait;
use Traits\JudgeTrait;

public FrequencyTable $ft;
/**
Expand Down
Loading

0 comments on commit cdb0b8b

Please sign in to comment.