Browse code

Added README.md appinfo/info.xml appinfo/signature.json lib/Controller/AuthorApiController.php and the providers directory

DoubleBastionAdmin authored on 20/08/2022 16:33:00
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,36 @@
1
+{
2
+    "name": "telnyx\/telnyx-php-sms-relentless",
3
+    "description": "Telnyx PHP Library",
4
+    "keywords": [
5
+        "telnyx",
6
+        "api"
7
+    ],
8
+    "homepage": "https:\/\/telnyx.com\/",
9
+    "license": "MIT",
10
+    "authors": [
11
+        {
12
+            "name": "Telnyx and contributors",
13
+            "homepage": "https:\/\/github.com\/telnyx\/telnyx-php\/contributors"
14
+        }
15
+    ],
16
+    "require": {
17
+        "php": "^5.6 || ^7.0",
18
+        "ext-curl": "*",
19
+        "ext-json": "*",
20
+        "ext-mbstring": "*",
21
+        "telnyx/telnyx-php": "^2.7"
22
+    },
23
+    "autoload": {
24
+      "psr-4": { "Telnyx\\" : "lib/" }
25
+    },
26
+    "extra": {
27
+        "branch-alias": {
28
+            "dev-master": "2.0-dev"
29
+        }
30
+    },
31
+    "scripts": {
32
+        "test": "phpunit --colors=always",
33
+        "test-coverage": "phpunit --colors=always --coverage-clover build/logs/clover.xml",
34
+        "cs-check": "phpcs"
35
+    }
36
+}