Skip to content
Merged
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
6 changes: 3 additions & 3 deletions bin/view-csv
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

require 'vendor/autoload.php';

use rcsofttech85\FileHandler\CsvFileHandler;
use rcsofttech85\FileHandler\DI\ServiceContainer;
use rcsofttech85\FileHandler\Exception\FileHandlerException;
use Rcsofttech85\FileHandler\CsvFileHandler;
use Rcsofttech85\FileHandler\DependencyInjection\ServiceContainer;
use Rcsofttech85\FileHandler\Exception\FileHandlerException;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
Expand Down
6 changes: 3 additions & 3 deletions bin/view-json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#!/usr/bin/env php
<?php

use rcsofttech85\FileHandler\DI\ServiceContainer;
use rcsofttech85\FileHandler\Exception\FileHandlerException;
use rcsofttech85\FileHandler\JsonFileHandler;
use Rcsofttech85\FileHandler\DependencyInjection\ServiceContainer;
use Rcsofttech85\FileHandler\Exception\FileHandlerException;
use Rcsofttech85\FileHandler\JsonFileHandler;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
Expand Down
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"license": "MIT",
"autoload": {
"psr-4": {
"rcsofttech85\\FileHandler\\": "src/"
"Rcsofttech85\\FileHandler\\": "src/"
}
},
"authors": [
Expand All @@ -30,7 +30,8 @@
"phpunit/phpunit": "^10",
"squizlabs/php_codesniffer": "^3.7",
"symfony/dotenv": "^6.3",
"symfony/var-dumper": "^6.3"
"symfony/var-dumper": "^6.3",
"phpstan/phpstan": "^1.10"
},
"bin": [
"bin/file-diff",
Expand Down
Loading