Skip to content

Commit cdf16e3

Browse files
committed
UniFi API browser 2.0.3
switched to Twig 1.X to support PHP versions lower than 7.X (down to PHP 5.6.32 has been confirmed to work)
1 parent 611a561 commit cdf16e3

File tree

967 files changed

+23413
-8268
lines changed

Some content is hidden

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

967 files changed

+23413
-8268
lines changed

common.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* with this package in the file LICENSE.md
88
*
99
*/
10-
define('TOOL_VERSION', '2.0.2');
10+
define('TOOL_VERSION', '2.0.3');
1111

1212
/**
1313
* gather some basic information for the About modal

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"require": {
3-
"twig/twig": "^2.0",
3+
"twig/twig": "1.*",
44
"kint-php/kint": "2.2",
55
"art-of-wifi/unifi-api-client": "^1.1"
66
}

composer.lock

Lines changed: 9 additions & 69 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/composer/autoload_files.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,5 @@
77

88
return array(
99
'320cde22f66dd4f5d3fd621d3e88b98f' => $vendorDir . '/symfony/polyfill-ctype/bootstrap.php',
10-
'0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php',
1110
'3917c79c5052b270641b5a200963dbc2' => $vendorDir . '/kint-php/kint/init.php',
1211
);

vendor/composer/autoload_psr4.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,5 @@
88
return array(
99
'UniFi_API\\' => array($vendorDir . '/art-of-wifi/unifi-api-client/src'),
1010
'Twig\\' => array($vendorDir . '/twig/twig/src'),
11-
'Symfony\\Polyfill\\Mbstring\\' => array($vendorDir . '/symfony/polyfill-mbstring'),
1211
'Symfony\\Polyfill\\Ctype\\' => array($vendorDir . '/symfony/polyfill-ctype'),
1312
);

vendor/composer/autoload_static.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ class ComposerStaticInit5cc2e24247b4e15bb92a850823953a3c
88
{
99
public static $files = array (
1010
'320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php',
11-
'0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php',
1211
'3917c79c5052b270641b5a200963dbc2' => __DIR__ . '/..' . '/kint-php/kint/init.php',
1312
);
1413

@@ -23,7 +22,6 @@ class ComposerStaticInit5cc2e24247b4e15bb92a850823953a3c
2322
),
2423
'S' =>
2524
array (
26-
'Symfony\\Polyfill\\Mbstring\\' => 26,
2725
'Symfony\\Polyfill\\Ctype\\' => 23,
2826
),
2927
);
@@ -37,10 +35,6 @@ class ComposerStaticInit5cc2e24247b4e15bb92a850823953a3c
3735
array (
3836
0 => __DIR__ . '/..' . '/twig/twig/src',
3937
),
40-
'Symfony\\Polyfill\\Mbstring\\' =>
41-
array (
42-
0 => __DIR__ . '/..' . '/symfony/polyfill-mbstring',
43-
),
4438
'Symfony\\Polyfill\\Ctype\\' =>
4539
array (
4640
0 => __DIR__ . '/..' . '/symfony/polyfill-ctype',

vendor/composer/installed.json

Lines changed: 9 additions & 71 deletions
Original file line numberDiff line numberDiff line change
@@ -168,97 +168,35 @@
168168
"portable"
169169
]
170170
},
171-
{
172-
"name": "symfony/polyfill-mbstring",
173-
"version": "v1.12.0",
174-
"version_normalized": "1.12.0.0",
175-
"source": {
176-
"type": "git",
177-
"url": "https://github.com/symfony/polyfill-mbstring.git",
178-
"reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17"
179-
},
180-
"dist": {
181-
"type": "zip",
182-
"url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/b42a2f66e8f1b15ccf25652c3424265923eb4f17",
183-
"reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17",
184-
"shasum": ""
185-
},
186-
"require": {
187-
"php": ">=5.3.3"
188-
},
189-
"suggest": {
190-
"ext-mbstring": "For best performance"
191-
},
192-
"time": "2019-08-06T08:03:45+00:00",
193-
"type": "library",
194-
"extra": {
195-
"branch-alias": {
196-
"dev-master": "1.12-dev"
197-
}
198-
},
199-
"installation-source": "dist",
200-
"autoload": {
201-
"psr-4": {
202-
"Symfony\\Polyfill\\Mbstring\\": ""
203-
},
204-
"files": [
205-
"bootstrap.php"
206-
]
207-
},
208-
"notification-url": "https://packagist.org/downloads/",
209-
"license": [
210-
"MIT"
211-
],
212-
"authors": [
213-
{
214-
"name": "Nicolas Grekas",
215-
"email": "p@tchwork.com"
216-
},
217-
{
218-
"name": "Symfony Community",
219-
"homepage": "https://symfony.com/contributors"
220-
}
221-
],
222-
"description": "Symfony polyfill for the Mbstring extension",
223-
"homepage": "https://symfony.com",
224-
"keywords": [
225-
"compatibility",
226-
"mbstring",
227-
"polyfill",
228-
"portable",
229-
"shim"
230-
]
231-
},
232171
{
233172
"name": "twig/twig",
234-
"version": "v2.12.1",
235-
"version_normalized": "2.12.1.0",
173+
"version": "v1.42.3",
174+
"version_normalized": "1.42.3.0",
236175
"source": {
237176
"type": "git",
238177
"url": "https://github.com/twigphp/Twig.git",
239-
"reference": "ddd4134af9bfc6dba4eff7c8447444ecc45b9ee5"
178+
"reference": "201baee843e0ffe8b0b956f336dd42b2a92fae4e"
240179
},
241180
"dist": {
242181
"type": "zip",
243-
"url": "https://api.github.com/repos/twigphp/Twig/zipball/ddd4134af9bfc6dba4eff7c8447444ecc45b9ee5",
244-
"reference": "ddd4134af9bfc6dba4eff7c8447444ecc45b9ee5",
182+
"url": "https://api.github.com/repos/twigphp/Twig/zipball/201baee843e0ffe8b0b956f336dd42b2a92fae4e",
183+
"reference": "201baee843e0ffe8b0b956f336dd42b2a92fae4e",
245184
"shasum": ""
246185
},
247186
"require": {
248-
"php": "^7.0",
249-
"symfony/polyfill-ctype": "^1.8",
250-
"symfony/polyfill-mbstring": "^1.3"
187+
"php": ">=5.5.0",
188+
"symfony/polyfill-ctype": "^1.8"
251189
},
252190
"require-dev": {
253191
"psr/container": "^1.0",
254192
"symfony/debug": "^3.4|^4.2",
255193
"symfony/phpunit-bridge": "^4.4@dev|^5.0"
256194
},
257-
"time": "2019-10-17T07:34:53+00:00",
195+
"time": "2019-08-24T12:51:03+00:00",
258196
"type": "library",
259197
"extra": {
260198
"branch-alias": {
261-
"dev-master": "2.12-dev"
199+
"dev-master": "1.42-dev"
262200
}
263201
},
264202
"installation-source": "dist",

vendor/symfony/polyfill-mbstring/LICENSE

Lines changed: 0 additions & 19 deletions
This file was deleted.

0 commit comments

Comments
 (0)