2023-08-03 04:48:59 +00:00
|
|
|
{
|
|
|
|
"name": "axenov/pm-convert",
|
|
|
|
"type": "library",
|
2023-08-13 15:42:24 +00:00
|
|
|
"description": "Postman collection converter",
|
2023-08-03 04:48:59 +00:00
|
|
|
"license": "MIT",
|
|
|
|
"homepage": "https://axenov.dev/",
|
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "Anthony Axenov",
|
|
|
|
"homepage": "https://axenov.dev"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"keywords": ["postman", "collection", "converter", "http", "wget", "curl", "api", "convert"],
|
|
|
|
"require": {
|
2024-08-04 15:17:04 +00:00
|
|
|
"php": "^8.2",
|
2023-09-17 15:59:37 +00:00
|
|
|
"ext-json": "*",
|
2024-07-07 15:43:15 +00:00
|
|
|
"ext-mbstring": "*",
|
|
|
|
"ext-readline": "*"
|
2023-08-03 04:48:59 +00:00
|
|
|
},
|
2023-09-10 01:03:54 +00:00
|
|
|
"bin": ["pm-convert"],
|
2023-08-03 04:48:59 +00:00
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
|
|
|
"PmConverter\\": "src\\"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"pm-convert": "@php ./pm-convert"
|
|
|
|
},
|
|
|
|
"config": {
|
|
|
|
"optimize-autoloader": true,
|
|
|
|
"preferred-install": "dist",
|
|
|
|
"sort-packages": true
|
2023-09-10 01:03:54 +00:00
|
|
|
},
|
|
|
|
"require-dev": {
|
|
|
|
"phpunit/phpunit": "^10.3"
|
2023-08-03 04:48:59 +00:00
|
|
|
}
|
|
|
|
}
|