aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorThomas Citharel <tcit@tcit.fr>2016-02-23 23:29:25 +0100
committerThomas Citharel <tcit@tcit.fr>2016-02-23 23:29:25 +0100
commit0a7e695975af4dc6fe3c8b22ab9323b725d8da6d (patch)
treebe55e6be23fa592c3d2b28fad90313ec09cc044f
parentdb847ca0b75728602f1800fe61829965493fa73c (diff)
downloadwallabag-0a7e695975af4dc6fe3c8b22ab9323b725d8da6d.tar.gz
wallabag-0a7e695975af4dc6fe3c8b22ab9323b725d8da6d.tar.zst
wallabag-0a7e695975af4dc6fe3c8b22ab9323b725d8da6d.zip
remove unused functions & clean composer.json
-rw-r--r--composer.json33
-rw-r--r--src/Wallabag/CoreBundle/Command/InstallCommand.php2
2 files changed, 16 insertions, 19 deletions
diff --git a/composer.json b/composer.json
index 0a016049..796c4c15 100644
--- a/composer.json
+++ b/composer.json
@@ -29,6 +29,21 @@
29 }, 29 },
30 "require": { 30 "require": {
31 "php": ">=5.5.9", 31 "php": ">=5.5.9",
32 "ext-pcre": "*",
33 "ext-DOM": "*",
34 "ext-curl": "*",
35 "ext-gd": "*",
36 "ext-session": "*",
37 "ext-Ctype": "*",
38 "ext-hash": "*",
39 "ext-simplexml": "*",
40 "ext-json": "*",
41 "ext-mbstring": "*",
42 "ext-xml": "*",
43 "ext-iconv": "*",
44 "ext-gettext": "*",
45 "ext-tokenizer": "*",
46 "ext-PDO": "*",
32 "symfony/symfony": "3.0.*", 47 "symfony/symfony": "3.0.*",
33 "doctrine/orm": "^2.5", 48 "doctrine/orm": "^2.5",
34 "doctrine/doctrine-bundle": "^1.6", 49 "doctrine/doctrine-bundle": "^1.6",
@@ -66,23 +81,7 @@
66 "paragonie/random_compat": "~1.0", 81 "paragonie/random_compat": "~1.0",
67 "craue/config-bundle": "~1.4", 82 "craue/config-bundle": "~1.4",
68 "mnapoli/piwik-twig-extension": "^1.0", 83 "mnapoli/piwik-twig-extension": "^1.0",
69 "lexik/maintenance-bundle": "~2.1", 84 "lexik/maintenance-bundle": "~2.1"
70 "ext-pcre": "*",
71 "ext-DOM": "*",
72 "ext-curl": "*",
73 "ext-gd": "*",
74 "ext-session": "*",
75 "ext-Ctype": "*",
76 "ext-hash": "*",
77 "ext-simplexml": "*",
78 "ext-json": "*",
79 "ext-mbstring": "*",
80 "ext-xml": "*",
81 "ext-tidy": "*",
82 "ext-iconv": "*",
83 "ext-gettext": "*",
84 "ext-tokenizer": "*",
85 "ext-PDO": "*"
86 }, 85 },
87 "require-dev": { 86 "require-dev": {
88 "doctrine/doctrine-fixtures-bundle": "~2.2", 87 "doctrine/doctrine-fixtures-bundle": "~2.2",
diff --git a/src/Wallabag/CoreBundle/Command/InstallCommand.php b/src/Wallabag/CoreBundle/Command/InstallCommand.php
index 114b8726..9383628c 100644
--- a/src/Wallabag/CoreBundle/Command/InstallCommand.php
+++ b/src/Wallabag/CoreBundle/Command/InstallCommand.php
@@ -30,10 +30,8 @@ class InstallCommand extends ContainerAwareCommand
30 * @var array 30 * @var array
31 */ 31 */
32 protected $functionExists = [ 32 protected $functionExists = [
33 'tidy_parse_string',
34 'curl_exec', 33 'curl_exec',
35 'curl_multi_init', 34 'curl_multi_init',
36 'gettext',
37 ]; 35 ];
38 36
39 protected function configure() 37 protected function configure()