Skip to content

Commit e37b1a9

Browse files
committed
v2: updated to php7.3
1 parent 411cdc7 commit e37b1a9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+2270
-917
lines changed

composer.json

+55-55
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,57 @@
11
{
2-
"authors": [
3-
{
4-
"name": "André Matthies",
5-
"email": "a.matthies@sms77.io",
6-
"homepage": "http://www.sms77.io",
7-
"role": "Developer"
8-
}
9-
],
10-
"autoload": {
11-
"psr-4": {
12-
"Sms77\\Api\\": "src/"
13-
}
14-
},
15-
"autoload-dev": {
16-
"psr-4": {
17-
"Sms77\\Tests\\": "tests/"
18-
}
19-
},
20-
"config": {
21-
"platform": {
22-
"php": "5.6.40"
23-
}
24-
},
25-
"description": "A simple PHP library for requesting the Sms77.io SMS gateway.",
26-
"homepage": "https://github.com/sms77io/php-api",
27-
"keywords": [
28-
"2fa",
29-
"sms",
30-
"gateway",
31-
"text2speech",
32-
"hlr",
33-
"cnam",
34-
"mnp"
35-
],
36-
"license": "MIT",
37-
"name": "sms77/api",
38-
"require": {
39-
"php": ">=5.6.0",
40-
"ext-ctype": "*",
41-
"ext-curl": "*",
42-
"ext-mbstring": "*"
43-
},
44-
"require-dev": {
45-
"phpunit/phpunit": "5.7.27",
46-
"ext-soap": "*",
47-
"ext-simplexml": "*",
48-
"ext-json": "*"
49-
},
50-
"support": {
51-
"email": "support@sms77.io",
52-
"rss": "https://www.sms77.io/de/feed/",
53-
"source": "https://github.com/sms77io/php-api",
54-
"docs": "https://github.com/sms77io/php-api"
55-
},
56-
"type": "library"
2+
"authors": [
3+
{
4+
"name": "André Matthies",
5+
"email": "a.matthies@sms77.io",
6+
"homepage": "http://www.sms77.io",
7+
"role": "Developer"
8+
}
9+
],
10+
"autoload": {
11+
"psr-4": {
12+
"Sms77\\Api\\": "src/"
13+
}
14+
},
15+
"autoload-dev": {
16+
"psr-4": {
17+
"Sms77\\Tests\\": "tests/"
18+
}
19+
},
20+
"config": {
21+
"platform": {
22+
"php": "7.3"
23+
}
24+
},
25+
"description": "A simple PHP library for requesting the Sms77.io SMS gateway.",
26+
"homepage": "https://github.com/sms77io/php-api",
27+
"keywords": [
28+
"2fa",
29+
"sms",
30+
"gateway",
31+
"text2speech",
32+
"hlr",
33+
"cnam",
34+
"mnp"
35+
],
36+
"license": "MIT",
37+
"name": "sms77/api",
38+
"require": {
39+
"php": ">=7.3",
40+
"ext-ctype": "*",
41+
"ext-curl": "*",
42+
"ext-mbstring": "*",
43+
"ext-json": "*"
44+
},
45+
"require-dev": {
46+
"phpunit/phpunit": "^9",
47+
"ext-soap": "*",
48+
"ext-simplexml": "*"
49+
},
50+
"support": {
51+
"email": "support@sms77.io",
52+
"rss": "https://www.sms77.io/de/feed/",
53+
"source": "https://github.com/sms77io/php-client",
54+
"docs": "https://github.com/sms77io/php-client"
55+
},
56+
"type": "library"
5757
}

0 commit comments

Comments
 (0)