At this stage, the code is known to work and has been thoroughly tested

This commit is contained in:
Jason Thistlethwaite
2026-04-27 22:24:04 +00:00
parent a11fa3b142
commit 16feb51b12
15 changed files with 2899 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
{
"name": "local/voipms-cli",
"description": "Small PHP library and CLI for the VoIP.ms REST/JSON API.",
"type": "library",
"require": {
"php": ">=8.1",
"ext-curl": "*",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"VoipMs\\": "src/"
}
},
"bin": [
"voipms-cli.php"
]
}