mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-26 02:51:04 +00:00
remove unused functions & clean composer.json
This commit is contained in:
parent
db847ca0b7
commit
0a7e695975
2 changed files with 16 additions and 19 deletions
|
@ -29,6 +29,21 @@
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
"php": ">=5.5.9",
|
"php": ">=5.5.9",
|
||||||
|
"ext-pcre": "*",
|
||||||
|
"ext-DOM": "*",
|
||||||
|
"ext-curl": "*",
|
||||||
|
"ext-gd": "*",
|
||||||
|
"ext-session": "*",
|
||||||
|
"ext-Ctype": "*",
|
||||||
|
"ext-hash": "*",
|
||||||
|
"ext-simplexml": "*",
|
||||||
|
"ext-json": "*",
|
||||||
|
"ext-mbstring": "*",
|
||||||
|
"ext-xml": "*",
|
||||||
|
"ext-iconv": "*",
|
||||||
|
"ext-gettext": "*",
|
||||||
|
"ext-tokenizer": "*",
|
||||||
|
"ext-PDO": "*",
|
||||||
"symfony/symfony": "3.0.*",
|
"symfony/symfony": "3.0.*",
|
||||||
"doctrine/orm": "^2.5",
|
"doctrine/orm": "^2.5",
|
||||||
"doctrine/doctrine-bundle": "^1.6",
|
"doctrine/doctrine-bundle": "^1.6",
|
||||||
|
@ -66,23 +81,7 @@
|
||||||
"paragonie/random_compat": "~1.0",
|
"paragonie/random_compat": "~1.0",
|
||||||
"craue/config-bundle": "~1.4",
|
"craue/config-bundle": "~1.4",
|
||||||
"mnapoli/piwik-twig-extension": "^1.0",
|
"mnapoli/piwik-twig-extension": "^1.0",
|
||||||
"lexik/maintenance-bundle": "~2.1",
|
"lexik/maintenance-bundle": "~2.1"
|
||||||
"ext-pcre": "*",
|
|
||||||
"ext-DOM": "*",
|
|
||||||
"ext-curl": "*",
|
|
||||||
"ext-gd": "*",
|
|
||||||
"ext-session": "*",
|
|
||||||
"ext-Ctype": "*",
|
|
||||||
"ext-hash": "*",
|
|
||||||
"ext-simplexml": "*",
|
|
||||||
"ext-json": "*",
|
|
||||||
"ext-mbstring": "*",
|
|
||||||
"ext-xml": "*",
|
|
||||||
"ext-tidy": "*",
|
|
||||||
"ext-iconv": "*",
|
|
||||||
"ext-gettext": "*",
|
|
||||||
"ext-tokenizer": "*",
|
|
||||||
"ext-PDO": "*"
|
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"doctrine/doctrine-fixtures-bundle": "~2.2",
|
"doctrine/doctrine-fixtures-bundle": "~2.2",
|
||||||
|
|
|
@ -30,10 +30,8 @@ class InstallCommand extends ContainerAwareCommand
|
||||||
* @var array
|
* @var array
|
||||||
*/
|
*/
|
||||||
protected $functionExists = [
|
protected $functionExists = [
|
||||||
'tidy_parse_string',
|
|
||||||
'curl_exec',
|
'curl_exec',
|
||||||
'curl_multi_init',
|
'curl_multi_init',
|
||||||
'gettext',
|
|
||||||
];
|
];
|
||||||
|
|
||||||
protected function configure()
|
protected function configure()
|
||||||
|
|
Loading…
Reference in a new issue