3 Commits

Author SHA1 Message Date
0ac5e64c17 Merge pull request 'v1.2.0' (#3) from dev into master
Reviewed-on: #3
2023-08-13 02:28:33 +00:00
c5f928dc47 Merge pull request 'v1.1.1' (#2) from dev into master
Reviewed-on: #2
2023-08-10 05:33:30 +00:00
9ed0ddf79b Merge pull request 'v1.1.0' (#1) from dev into master
Reviewed-on: #1
2023-08-04 01:28:43 +00:00
3 changed files with 7 additions and 15 deletions

View File

@@ -20,13 +20,8 @@ foreach ($paths as $path) {
is_null($file) && throw new RuntimeException('Unable to locate autoload.php file.'); is_null($file) && throw new RuntimeException('Unable to locate autoload.php file.');
$processor = new Processor($argv);
try { try {
$processor->convert(); (new Processor($argv))->convert();
} catch (InvalidArgumentException $e) {
fwrite(STDERR, sprintf('ERROR: %s%s', $e->getMessage(), PHP_EOL));
print(implode(PHP_EOL, $processor->usage()));
die(1);
} catch (Exception $e) { } catch (Exception $e) {
fwrite(STDERR, sprintf('ERROR: %s%s', $e->getMessage(), PHP_EOL)); fwrite(STDERR, sprintf('ERROR: %s%s', $e->getMessage(), PHP_EOL));
die(1); die(1);

View File

@@ -22,7 +22,7 @@ class Processor
/** /**
* Converter version * Converter version
*/ */
public const VERSION = '1.2.1'; public const VERSION = '1.2.0';
/** /**
* @var string[] Paths to collection files * @var string[] Paths to collection files
@@ -167,9 +167,6 @@ class Processor
if (empty($this->collectionPaths)) { if (empty($this->collectionPaths)) {
throw new InvalidArgumentException('there are no collections to convert'); throw new InvalidArgumentException('there are no collections to convert');
} }
if (empty($this->outputPath)) {
throw new InvalidArgumentException('-o is required');
}
if (empty($this->formats)) { if (empty($this->formats)) {
$this->formats = [ConvertFormat::Http->name => ConvertFormat::Http]; $this->formats = [ConvertFormat::Http->name => ConvertFormat::Http];
} }
@@ -288,7 +285,7 @@ class Processor
/** /**
* @return string[] * @return string[]
*/ */
public function version(): array protected function version(): array
{ {
return ["Postman collection converter v" . self::VERSION]; return ["Postman collection converter v" . self::VERSION];
} }
@@ -296,7 +293,7 @@ class Processor
/** /**
* @return string[] * @return string[]
*/ */
public function copyright(): array protected function copyright(): array
{ {
return [ return [
'Anthony Axenov (c) ' . date('Y') . ", MIT license", 'Anthony Axenov (c) ' . date('Y') . ", MIT license",
@@ -307,7 +304,7 @@ class Processor
/** /**
* @return array * @return array
*/ */
public function usage(): array protected function usage(): array
{ {
return array_merge($this->version(), [ return array_merge($this->version(), [
'Usage:', 'Usage:',