diff options
52 files changed, 0 insertions, 6517 deletions
| diff --git a/README.md b/README.md deleted file mode 100644 index fcc4586..0000000 --- a/README.md +++ /dev/null @@ -1,4 +0,0 @@ -pollution-sensor -================ - -A Symfony project created on November 22, 2017, 11:05 am. diff --git a/app/.htaccess b/app/.htaccess deleted file mode 100644 index fb1de45..0000000 --- a/app/.htaccess +++ /dev/null @@ -1,7 +0,0 @@ -<IfModule mod_authz_core.c> -    Require all denied -</IfModule> -<IfModule !mod_authz_core.c> -    Order deny,allow -    Deny from all -</IfModule> diff --git a/app/AppCache.php b/app/AppCache.php deleted file mode 100644 index 639ec2c..0000000 --- a/app/AppCache.php +++ /dev/null @@ -1,7 +0,0 @@ -<?php - -use Symfony\Bundle\FrameworkBundle\HttpCache\HttpCache; - -class AppCache extends HttpCache -{ -} diff --git a/app/AppKernel.php b/app/AppKernel.php deleted file mode 100644 index ef068e0..0000000 --- a/app/AppKernel.php +++ /dev/null @@ -1,54 +0,0 @@ -<?php - -use Symfony\Component\HttpKernel\Kernel; -use Symfony\Component\Config\Loader\LoaderInterface; - -class AppKernel extends Kernel -{ -    public function registerBundles() -    { -        $bundles = [ -            new Symfony\Bundle\FrameworkBundle\FrameworkBundle(), -            new Symfony\Bundle\SecurityBundle\SecurityBundle(), -            new Symfony\Bundle\TwigBundle\TwigBundle(), -            new Symfony\Bundle\MonologBundle\MonologBundle(), -            new Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle(), -            new Doctrine\Bundle\DoctrineBundle\DoctrineBundle(), -            new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(), -            new AppBundle\AppBundle(), -        ]; - -        if (in_array($this->getEnvironment(), ['dev', 'test'], true)) { -            $bundles[] = new Symfony\Bundle\DebugBundle\DebugBundle(); -            $bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle(); -            $bundles[] = new Sensio\Bundle\DistributionBundle\SensioDistributionBundle(); - -            if ('dev' === $this->getEnvironment()) { -                $bundles[] = new Sensio\Bundle\GeneratorBundle\SensioGeneratorBundle(); -                $bundles[] = new Symfony\Bundle\WebServerBundle\WebServerBundle(); -            } -        } - -        return $bundles; -    } - -    public function getRootDir() -    { -        return __DIR__; -    } - -    public function getCacheDir() -    { -        return dirname(__DIR__).'/var/cache/'.$this->getEnvironment(); -    } - -    public function getLogDir() -    { -        return dirname(__DIR__).'/var/logs'; -    } - -    public function registerContainerConfiguration(LoaderInterface $loader) -    { -        $loader->load($this->getRootDir().'/config/config_'.$this->getEnvironment().'.yml'); -    } -} diff --git a/app/Resources/views/base.html.twig b/app/Resources/views/base.html.twig deleted file mode 100644 index f8d8374..0000000 --- a/app/Resources/views/base.html.twig +++ /dev/null @@ -1,33 +0,0 @@ -<!DOCTYPE html> -<html> -    <head> -        <meta charset="UTF-8" /> -        <title>{% block title %}Welcome!{% endblock %}</title> -        {% block stylesheets %}{% endblock %} -        <link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}" /> -        <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.6.1/css/bulma.min.css"/> -    </head> -    <body> -    <nav class="navbar" role="navigation" aria-label="main navigation" style="margin: 0 0 3em 0"> -        <div class="navbar-brand"> -            <a class="navbar-item" href="/"> -                <img src="https://cdn3.iconfinder.com/data/icons/christmas-icon-set-pixel-perfect/64/christmas-color-12-512.png" alt="Pollutometer" width="50px" height="auto"> -                <span>Pollutometer</span> -            </a> -            <a class="navbar-item" href="/AllData"> -                <span>All Data</span> -            </a> -            <a class="navbar-item" href="/LastWeekData"> -                <span>Last Week Data</span> -            </a> -            <a class="navbar-item" href="/TrainSchedule"> -                <span>Train Schedule</span> -            </a> -        </div> -    </nav> -    <div class="container"> -        {% block body %}{% endblock %} -    </div> -        {% block javascripts %}{% endblock %} -    </body> -</html> diff --git a/app/Resources/views/default/AllData.html.twig b/app/Resources/views/default/AllData.html.twig deleted file mode 100644 index 7bc33af..0000000 --- a/app/Resources/views/default/AllData.html.twig +++ /dev/null @@ -1,35 +0,0 @@ -{% extends 'base.html.twig' %} - -{% block body %} -<div class="columns"> -    <div class="column is-narrow"> -<table class="table"> -    <thead class="thead"> -        <tr class="tr"> -            <th>TimeStamp</th> -            <th>Co</th> -            <th>No</th> -            <th>So</th> -        </tr> -    </thead> -    <tbody class="tbody"> -        <tr class="tr"> -            {% for table in data %} -            <td class="td">{{ table.TimeStamp }}</td> -            <td class="td">{{ table.Co }}</td> -            <td class="td">{{ table.No }}</td> -            <td class="td">{{ table.So }}</td> -        </tr> -    </tbody> -    {% endfor %} -</table> -    </div> -    <div class="column"> -<canvas id="ctx"></canvas> -    </div> -</div> -{% endblock %} -{% block javascripts %} -    <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.1/Chart.bundle.min.js"></script> -    <script src="{{ asset('js/AllDataChart.js') }}"></script -{% endblock %}
\ No newline at end of file diff --git a/app/Resources/views/default/LastWeekData.html.twig b/app/Resources/views/default/LastWeekData.html.twig deleted file mode 100644 index fdc6dd9..0000000 --- a/app/Resources/views/default/LastWeekData.html.twig +++ /dev/null @@ -1,35 +0,0 @@ -{% extends 'base.html.twig' %} - -{% block body %} -<div class="columns"> -    <div class="column is-narrow"> -<table class="table"> -    <thead class="thead"> -        <tr class="tr"> -            <th>TimeStamp</th> -            <th>Co</th> -            <th>No</th> -            <th>So</th> -        </tr> -    </thead> -    <tbody class="tbody"> -        <tr class="tr"> -            {% for table in data %} -            <td class="td">{{ table.TimeStamp }}</td> -            <td class="td">{{ table.Co }}</td> -            <td class="td">{{ table.No }}</td> -            <td class="td">{{ table.So }}</td> -        </tr> -    </tbody> -    {% endfor %} -</table> -    </div> -    <div class="column"> -<canvas id="ctx"></canvas> -    </div> -</div> -{% endblock %} -{% block javascripts %} -    <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.1/Chart.bundle.min.js"></script> -    <script src="{{ asset('js/LastWeekDataChart.js') }}"></script -{% endblock %}
\ No newline at end of file diff --git a/app/Resources/views/default/TrainSchedule.html.twig b/app/Resources/views/default/TrainSchedule.html.twig deleted file mode 100644 index efc94ec..0000000 --- a/app/Resources/views/default/TrainSchedule.html.twig +++ /dev/null @@ -1,28 +0,0 @@ -{% extends 'base.html.twig' %} - -{% block body %} -<table class="table"> -    <thead class="thead"> -    <tr class="tr"> -        <th>Name</th> -        <th>Time</th> -        <th>Date</th> -        <th>Destination</th> -        <th>AQI</th> -    </tr> -    </thead> -    <tbody class="tbody"> -    <tr class="tr"> -        {% for table in data %} -        <td class="td">{{ table.name }}</td> -        <td class="td">{{ table.time }}</td> -        <td class="td">{{ table.date }}</td> -        <td class="td">{{ table.finalStop }}</td> -        <td class="td">{{ table.direction }}</td> -    </tr> -    </tbody> -    {% endfor %} -</table> -{% endblock %} -{% block javascripts %} -{% endblock %}
\ No newline at end of file diff --git a/app/Resources/views/default/index.html.twig b/app/Resources/views/default/index.html.twig deleted file mode 100644 index 176f519..0000000 --- a/app/Resources/views/default/index.html.twig +++ /dev/null @@ -1,34 +0,0 @@ -{% extends 'base.html.twig' %} - -{% block body %} -    <div class="columns"> -        <div class="column"> -            <table class="table"> -                <thead class="thead"> -                <tr class="tr"> -                    <th class="td">TimeStamp</th> -                    <th class="td">Co</th> -                    <th class="td">No</th> -                    <th class="td">So</th> -                </tr> -                </thead> -                <tbody class="tbody"> -                <tr id="latest" class="tr"> -                    <td class="td">{{ TimeStamp }}</td> -                    <td class="td">{{ Co }}</td> -                    <td class="td">{{ No }}</td> -                    <td class="td">{{ So }}</td> -                </tr> -                </tbody> -            </table> -            <p id="aq">The current air quality index is <strong>{{ Aqi }}</strong></p> -        </div> -        <div class="column"> -            <img src="https://www.ourair.org/wp-content/uploads/AQItable.gif"> -        </div> -    </div> - -{% endblock %} -{% block javascripts %} -    <script src="{{ asset('js/realtime.js') }}"></script> -{% endblock %} diff --git a/app/config/config.yml b/app/config/config.yml deleted file mode 100644 index 4819c20..0000000 --- a/app/config/config.yml +++ /dev/null @@ -1,69 +0,0 @@ -imports: -    - { resource: parameters.yml } -    - { resource: security.yml } -    - { resource: services.yml } - -# Put parameters here that don't need to change on each machine where the app is deployed -# https://symfony.com/doc/current/best_practices/configuration.html#application-related-configuration -parameters: -    locale: en - -framework: -    #esi: ~ -    #translator: { fallbacks: ['%locale%'] } -    secret: '%secret%' -    router: -        resource: '%kernel.project_dir%/app/config/routing.yml' -        strict_requirements: ~ -    form: ~ -    csrf_protection: ~ -    validation: { enable_annotations: true } -    #serializer: { enable_annotations: true } -    templating: -        engines: ['twig'] -    default_locale: '%locale%' -    trusted_hosts: ~ -    session: -        # https://symfony.com/doc/current/reference/configuration/framework.html#handler-id -        handler_id: session.handler.native_file -        save_path: '%kernel.project_dir%/var/sessions/%kernel.environment%' -    fragments: ~ -    http_method_override: true -    assets: ~ -    php_errors: -        log: true - -# Twig Configuration -twig: -    debug: '%kernel.debug%' -    strict_variables: '%kernel.debug%' - -# Doctrine Configuration -doctrine: -    dbal: -        driver: pdo_mysql -        host: '%database_host%' -        port: '%database_port%' -        dbname: '%database_name%' -        user: '%database_user%' -        password: '%database_password%' -        charset: UTF8 -        # if using pdo_sqlite as your database driver: -        #   1. add the path in parameters.yml -        #     e.g. database_path: '%kernel.project_dir%/var/data/data.sqlite' -        #   2. Uncomment database_path in parameters.yml -        #   3. Uncomment next line: -        #path: '%database_path%' - -    orm: -        auto_generate_proxy_classes: '%kernel.debug%' -        naming_strategy: doctrine.orm.naming_strategy.underscore -        auto_mapping: true - -# Swiftmailer Configuration -swiftmailer: -    transport: '%mailer_transport%' -    host: '%mailer_host%' -    username: '%mailer_user%' -    password: '%mailer_password%' -    spool: { type: memory } diff --git a/app/config/config_dev.yml b/app/config/config_dev.yml deleted file mode 100644 index 3a43646..0000000 --- a/app/config/config_dev.yml +++ /dev/null @@ -1,41 +0,0 @@ -imports: -    - { resource: config.yml } - -framework: -    router: -        resource: '%kernel.project_dir%/app/config/routing_dev.yml' -        strict_requirements: true -    profiler: { only_exceptions: false } - -web_profiler: -    toolbar: true -    intercept_redirects: false - -monolog: -    handlers: -        main: -            type: stream -            path: '%kernel.logs_dir%/%kernel.environment%.log' -            level: debug -            channels: ['!event'] -        console: -            type: console -            process_psr_3_messages: false -            channels: ['!event', '!doctrine', '!console'] -        # To follow logs in real time, execute the following command: -        # `bin/console server:log -vv` -        server_log: -            type: server_log -            process_psr_3_messages: false -            host: 127.0.0.1:9911 -        # uncomment to get logging in your browser -        # you may have to allow bigger header sizes in your Web server configuration -        #firephp: -        #    type: firephp -        #    level: info -        #chromephp: -        #    type: chromephp -        #    level: info - -#swiftmailer: -#    delivery_addresses: ['me@example.com'] diff --git a/app/config/config_prod.yml b/app/config/config_prod.yml deleted file mode 100644 index 5d460ce..0000000 --- a/app/config/config_prod.yml +++ /dev/null @@ -1,22 +0,0 @@ -imports: -    - { resource: config.yml } - -#doctrine: -#    orm: -#        metadata_cache_driver: apc -#        result_cache_driver: apc -#        query_cache_driver: apc - -monolog: -    handlers: -        main: -            type: fingers_crossed -            action_level: error -            handler: nested -        nested: -            type: stream -            path: '%kernel.logs_dir%/%kernel.environment%.log' -            level: debug -        console: -            type: console -            process_psr_3_messages: false diff --git a/app/config/config_test.yml b/app/config/config_test.yml deleted file mode 100644 index 2f6d925..0000000 --- a/app/config/config_test.yml +++ /dev/null @@ -1,16 +0,0 @@ -imports: -    - { resource: config_dev.yml } - -framework: -    test: ~ -    session: -        storage_id: session.storage.mock_file -    profiler: -        collect: false - -web_profiler: -    toolbar: false -    intercept_redirects: false - -swiftmailer: -    disable_delivery: true diff --git a/app/config/parameters.yml b/app/config/parameters.yml deleted file mode 100644 index 355c026..0000000 --- a/app/config/parameters.yml +++ /dev/null @@ -1,12 +0,0 @@ -# This file is auto-generated during the composer install -parameters: -    database_host: 127.0.0.1 -    database_port: null -    database_name: symfony -    database_user: root -    database_password: null -    mailer_transport: smtp -    mailer_host: 'mail.cock.li:587' -    mailer_user: ***REMOVED*** -    mailer_password: ***REMOVED*** -    secret: ThisTokenIsNotSoSecretChangeIt diff --git a/app/config/parameters.yml.dist b/app/config/parameters.yml.dist deleted file mode 100644 index 2c20ddc..0000000 --- a/app/config/parameters.yml.dist +++ /dev/null @@ -1,19 +0,0 @@ -# This file is a "template" of what your parameters.yml file should look like -# Set parameters here that may be different on each deployment target of the app, e.g. development, staging, production. -# https://symfony.com/doc/current/best_practices/configuration.html#infrastructure-related-configuration -parameters: -    database_host: 127.0.0.1 -    database_port: ~ -    database_name: symfony -    database_user: root -    database_password: ~ -    # You should uncomment this if you want to use pdo_sqlite -    #database_path: '%kernel.project_dir%/var/data/data.sqlite' - -    mailer_transport: smtp -    mailer_host: 127.0.0.1 -    mailer_user: ~ -    mailer_password: ~ - -    # A secret key that's used to generate certain security-related tokens -    secret: ThisTokenIsNotSoSecretChangeIt diff --git a/app/config/routing.yml b/app/config/routing.yml deleted file mode 100644 index 2ec067f..0000000 --- a/app/config/routing.yml +++ /dev/null @@ -1,3 +0,0 @@ -app: -    resource: '@AppBundle/Controller/' -    type: annotation diff --git a/app/config/routing_dev.yml b/app/config/routing_dev.yml deleted file mode 100644 index 20602eb..0000000 --- a/app/config/routing_dev.yml +++ /dev/null @@ -1,14 +0,0 @@ -_wdt: -    resource: '@WebProfilerBundle/Resources/config/routing/wdt.xml' -    prefix: /_wdt - -_profiler: -    resource: '@WebProfilerBundle/Resources/config/routing/profiler.xml' -    prefix: /_profiler - -_errors: -    resource: '@TwigBundle/Resources/config/routing/errors.xml' -    prefix: /_error - -_main: -    resource: routing.yml diff --git a/app/config/security.yml b/app/config/security.yml deleted file mode 100644 index 0e0b7cb..0000000 --- a/app/config/security.yml +++ /dev/null @@ -1,24 +0,0 @@ -# To get started with security, check out the documentation: -# https://symfony.com/doc/current/security.html -security: - -    # https://symfony.com/doc/current/security.html#b-configuring-how-users-are-loaded -    providers: -        in_memory: -            memory: ~ - -    firewalls: -        # disables authentication for assets and the profiler, adapt it according to your needs -        dev: -            pattern: ^/(_(profiler|wdt)|css|images|js)/ -            security: false - -        main: -            anonymous: ~ -            # activate different ways to authenticate - -            # https://symfony.com/doc/current/security.html#a-configuring-how-your-users-will-authenticate -            #http_basic: ~ - -            # https://symfony.com/doc/current/security/form_login_setup.html -            #form_login: ~ diff --git a/app/config/services.yml b/app/config/services.yml deleted file mode 100644 index 7ddee7c..0000000 --- a/app/config/services.yml +++ /dev/null @@ -1,38 +0,0 @@ -# Learn more about services, parameters and containers at -# https://symfony.com/doc/current/service_container.html -parameters: -    #parameter_name: value - -services: -    # default configuration for services in *this* file -    _defaults: -        # automatically injects dependencies in your services -        autowire: true -        # automatically registers your services as commands, event subscribers, etc. -        autoconfigure: true -        # this means you cannot fetch services directly from the container via $container->get() -        # if you need to do this, you can override this setting on individual services -        public: false - -    # makes classes in src/AppBundle available to be used as services -    # this creates a service per class whose id is the fully-qualified class name -    AppBundle\: -        resource: '../../src/AppBundle/*' -        # you can exclude directories or files -        # but if a service is unused, it's removed anyway -        exclude: '../../src/AppBundle/{Entity,Repository,Tests}' - -    # controllers are imported separately to make sure they're public -    # and have a tag that allows actions to type-hint services -    AppBundle\Controller\: -        resource: '../../src/AppBundle/Controller' -        public: true -        tags: ['controller.service_arguments'] - -    AppBundle\Utils\Aqi: -          public: false - -    # add more services, or override services that need manual wiring -    # AppBundle\Service\ExampleService: -    #     arguments: -    #         $someArgument: 'some_value' diff --git a/bin/console b/bin/console deleted file mode 100755 index 0629023..0000000 --- a/bin/console +++ /dev/null @@ -1,27 +0,0 @@ -#!/usr/bin/env php -<?php - -use Symfony\Bundle\FrameworkBundle\Console\Application; -use Symfony\Component\Console\Input\ArgvInput; -use Symfony\Component\Debug\Debug; - -// if you don't want to setup permissions the proper way, just uncomment the following PHP line -// read https://symfony.com/doc/current/setup.html#checking-symfony-application-configuration-and-setup -// for more information -//umask(0000); - -set_time_limit(0); - -require __DIR__.'/../vendor/autoload.php'; - -$input = new ArgvInput(); -$env = $input->getParameterOption(['--env', '-e'], getenv('SYMFONY_ENV') ?: 'dev'); -$debug = getenv('SYMFONY_DEBUG') !== '0' && !$input->hasParameterOption(['--no-debug', '']) && $env !== 'prod'; - -if ($debug) { -    Debug::enable(); -} - -$kernel = new AppKernel($env, $debug); -$application = new Application($kernel); -$application->run($input); diff --git a/bin/symfony_requirements b/bin/symfony_requirements deleted file mode 100755 index a7bf65a..0000000 --- a/bin/symfony_requirements +++ /dev/null @@ -1,146 +0,0 @@ -#!/usr/bin/env php -<?php - -require_once dirname(__FILE__).'/../var/SymfonyRequirements.php'; - -$lineSize = 70; -$symfonyRequirements = new SymfonyRequirements(); -$iniPath = $symfonyRequirements->getPhpIniConfigPath(); - -echo_title('Symfony Requirements Checker'); - -echo '> PHP is using the following php.ini file:'.PHP_EOL; -if ($iniPath) { -    echo_style('green', '  '.$iniPath); -} else { -    echo_style('yellow', '  WARNING: No configuration file (php.ini) used by PHP!'); -} - -echo PHP_EOL.PHP_EOL; - -echo '> Checking Symfony requirements:'.PHP_EOL.'  '; - -$messages = array(); -foreach ($symfonyRequirements->getRequirements() as $req) { -    if ($helpText = get_error_message($req, $lineSize)) { -        echo_style('red', 'E'); -        $messages['error'][] = $helpText; -    } else { -        echo_style('green', '.'); -    } -} - -$checkPassed = empty($messages['error']); - -foreach ($symfonyRequirements->getRecommendations() as $req) { -    if ($helpText = get_error_message($req, $lineSize)) { -        echo_style('yellow', 'W'); -        $messages['warning'][] = $helpText; -    } else { -        echo_style('green', '.'); -    } -} - -if ($checkPassed) { -    echo_block('success', 'OK', 'Your system is ready to run Symfony projects'); -} else { -    echo_block('error', 'ERROR', 'Your system is not ready to run Symfony projects'); - -    echo_title('Fix the following mandatory requirements', 'red'); - -    foreach ($messages['error'] as $helpText) { -        echo ' * '.$helpText.PHP_EOL; -    } -} - -if (!empty($messages['warning'])) { -    echo_title('Optional recommendations to improve your setup', 'yellow'); - -    foreach ($messages['warning'] as $helpText) { -        echo ' * '.$helpText.PHP_EOL; -    } -} - -echo PHP_EOL; -echo_style('title', 'Note'); -echo '  The command console could use a different php.ini file'.PHP_EOL; -echo_style('title', '~~~~'); -echo '  than the one used with your web server. To be on the'.PHP_EOL; -echo '      safe side, please check the requirements from your web'.PHP_EOL; -echo '      server using the '; -echo_style('yellow', 'web/config.php'); -echo ' script.'.PHP_EOL; -echo PHP_EOL; - -exit($checkPassed ? 0 : 1); - -function get_error_message(Requirement $requirement, $lineSize) -{ -    if ($requirement->isFulfilled()) { -        return; -    } - -    $errorMessage = wordwrap($requirement->getTestMessage(), $lineSize - 3, PHP_EOL.'   ').PHP_EOL; -    $errorMessage .= '   > '.wordwrap($requirement->getHelpText(), $lineSize - 5, PHP_EOL.'   > ').PHP_EOL; - -    return $errorMessage; -} - -function echo_title($title, $style = null) -{ -    $style = $style ?: 'title'; - -    echo PHP_EOL; -    echo_style($style, $title.PHP_EOL); -    echo_style($style, str_repeat('~', strlen($title)).PHP_EOL); -    echo PHP_EOL; -} - -function echo_style($style, $message) -{ -    // ANSI color codes -    $styles = array( -        'reset' => "\033[0m", -        'red' => "\033[31m", -        'green' => "\033[32m", -        'yellow' => "\033[33m", -        'error' => "\033[37;41m", -        'success' => "\033[37;42m", -        'title' => "\033[34m", -    ); -    $supports = has_color_support(); - -    echo($supports ? $styles[$style] : '').$message.($supports ? $styles['reset'] : ''); -} - -function echo_block($style, $title, $message) -{ -    $message = ' '.trim($message).' '; -    $width = strlen($message); - -    echo PHP_EOL.PHP_EOL; - -    echo_style($style, str_repeat(' ', $width)); -    echo PHP_EOL; -    echo_style($style, str_pad(' ['.$title.']', $width, ' ', STR_PAD_RIGHT)); -    echo PHP_EOL; -    echo_style($style, $message); -    echo PHP_EOL; -    echo_style($style, str_repeat(' ', $width)); -    echo PHP_EOL; -} - -function has_color_support() -{ -    static $support; - -    if (null === $support) { -        if (DIRECTORY_SEPARATOR == '\\') { -            $support = false !== getenv('ANSICON') || 'ON' === getenv('ConEmuANSI'); -        } else { -            $support = function_exists('posix_isatty') && @posix_isatty(STDOUT); -        } -    } - -    return $support; -} diff --git a/clean.sh b/clean.sh deleted file mode 100644 index 02d7baf..0000000 --- a/clean.sh +++ /dev/null @@ -1 +0,0 @@ -rm -Rf app bin src tests var web .gitignore composer.json composer.lock composer.phar phpunit.xml.dist README.md web.config diff --git a/composer.json b/composer.json deleted file mode 100644 index b11e53e..0000000 --- a/composer.json +++ /dev/null @@ -1,72 +0,0 @@ -{ -    "name": "pollution-sensor", -    "license": "proprietary", -    "type": "project", -    "autoload": { -        "psr-4": { -            "AppBundle\\": "src/AppBundle" -        }, -        "classmap": [ -            "app/AppKernel.php", -            "app/AppCache.php" -        ] -    }, -    "autoload-dev": { -        "psr-4": { -            "Tests\\": "tests/" -        }, -        "files": [ -            "vendor/symfony/symfony/src/Symfony/Component/VarDumper/Resources/functions/dump.php" -        ] -    }, -    "require": { -        "php": ">=7.0", -        "doctrine/doctrine-bundle": "^1.6", -        "doctrine/orm": "^2.5", -        "incenteev/composer-parameter-handler": "^2.0", -        "phpunit/phpunit": "^5.7", -        "sensio/distribution-bundle": "^5.0.19", -        "sensio/framework-extra-bundle": "^3.0.2", -        "symfony/monolog-bundle": "^3.1.0", -        "symfony/polyfill-apcu": "^1.0", -        "symfony/swiftmailer-bundle": "^2.3.10", -        "symfony/symfony": "3.3.*", -        "symfony/web-server-bundle": "^3.3", -        "twig/twig": "^1.0||^2.0" -    }, -    "require-dev": { -        "sensio/generator-bundle": "^3.0", -        "symfony/phpunit-bridge": "^3.0" -    }, -    "scripts": { -        "symfony-scripts": [ -            "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters", -            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap", -            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache", -            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets", -            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile", -            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget" -        ], -        "post-install-cmd": [ -            "@symfony-scripts" -        ], -        "post-update-cmd": [ -            "@symfony-scripts" -        ] -    }, -    "config": { -        "sort-packages": true -    }, -    "extra": { -        "symfony-app-dir": "app", -        "symfony-bin-dir": "bin", -        "symfony-var-dir": "var", -        "symfony-web-dir": "web", -        "symfony-tests-dir": "tests", -        "symfony-assets-install": "relative", -        "incenteev-parameters": { -            "file": "app/config/parameters.yml" -        }, -        "branch-alias": null -    } -} diff --git a/composer.lock b/composer.lock deleted file mode 100644 index 55dc1ec..0000000 --- a/composer.lock +++ /dev/null @@ -1,3602 +0,0 @@ -{ -    "_readme": [ -        "This file locks the dependencies of your project to a known state", -        "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", -        "This file is @generated automatically" -    ], -    "content-hash": "d42561b82ef941aeac12c844bd2d4812", -    "packages": [ -        { -            "name": "composer/ca-bundle", -            "version": "1.1.0", -            "source": { -                "type": "git", -                "url": "https://github.com/composer/ca-bundle.git", -                "reference": "943b2c4fcad1ef178d16a713c2468bf7e579c288" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/composer/ca-bundle/zipball/943b2c4fcad1ef178d16a713c2468bf7e579c288", -                "reference": "943b2c4fcad1ef178d16a713c2468bf7e579c288", -                "shasum": "" -            }, -            "require": { -                "ext-openssl": "*", -                "ext-pcre": "*", -                "php": "^5.3.2 || ^7.0" -            }, -            "require-dev": { -                "phpunit/phpunit": "^4.8.35", -                "psr/log": "^1.0", -                "symfony/process": "^2.5 || ^3.0 || ^4.0" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "1.x-dev" -                } -            }, -            "autoload": { -                "psr-4": { -                    "Composer\\CaBundle\\": "src" -                } -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "Jordi Boggiano", -                    "email": "j.boggiano@seld.be", -                    "homepage": "http://seld.be" -                } -            ], -            "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.", -            "keywords": [ -                "cabundle", -                "cacert", -                "certificate", -                "ssl", -                "tls" -            ], -            "time": "2017-11-29T09:37:33+00:00" -        }, -        { -            "name": "doctrine/annotations", -            "version": "v1.4.0", -            "source": { -                "type": "git", -                "url": "https://github.com/doctrine/annotations.git", -                "reference": "54cacc9b81758b14e3ce750f205a393d52339e97" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97", -                "reference": "54cacc9b81758b14e3ce750f205a393d52339e97", -                "shasum": "" -            }, -            "require": { -                "doctrine/lexer": "1.*", -                "php": "^5.6 || ^7.0" -            }, -            "require-dev": { -                "doctrine/cache": "1.*", -                "phpunit/phpunit": "^5.7" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "1.4.x-dev" -                } -            }, -            "autoload": { -                "psr-4": { -                    "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations" -                } -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "Roman Borschel", -                    "email": "roman@code-factory.org" -                }, -                { -                    "name": "Benjamin Eberlei", -                    "email": "kontakt@beberlei.de" -                }, -                { -                    "name": "Guilherme Blanco", -                    "email": "guilhermeblanco@gmail.com" -                }, -                { -                    "name": "Jonathan Wage", -                    "email": "jonwage@gmail.com" -                }, -                { -                    "name": "Johannes Schmitt", -                    "email": "schmittjoh@gmail.com" -                } -            ], -            "description": "Docblock Annotations Parser", -            "homepage": "http://www.doctrine-project.org", -            "keywords": [ -                "annotations", -                "docblock", -                "parser" -            ], -            "time": "2017-02-24T16:22:25+00:00" -        }, -        { -            "name": "doctrine/cache", -            "version": "v1.6.2", -            "source": { -                "type": "git", -                "url": "https://github.com/doctrine/cache.git", -                "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b", -                "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b", -                "shasum": "" -            }, -            "require": { -                "php": "~5.5|~7.0" -            }, -            "conflict": { -                "doctrine/common": ">2.2,<2.4" -            }, -            "require-dev": { -                "phpunit/phpunit": "~4.8|~5.0", -                "predis/predis": "~1.0", -                "satooshi/php-coveralls": "~0.6" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "1.6.x-dev" -                } -            }, -            "autoload": { -                "psr-4": { -                    "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache" -                } -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "Roman Borschel", -                    "email": "roman@code-factory.org" -                }, -                { -                    "name": "Benjamin Eberlei", -                    "email": "kontakt@beberlei.de" -                }, -                { -                    "name": "Guilherme Blanco", -                    "email": "guilhermeblanco@gmail.com" -                }, -                { -                    "name": "Jonathan Wage", -                    "email": "jonwage@gmail.com" -                }, -                { -                    "name": "Johannes Schmitt", -                    "email": "schmittjoh@gmail.com" -                } -            ], -            "description": "Caching library offering an object-oriented API for many cache backends", -            "homepage": "http://www.doctrine-project.org", -            "keywords": [ -                "cache", -                "caching" -            ], -            "time": "2017-07-22T12:49:21+00:00" -        }, -        { -            "name": "doctrine/collections", -            "version": "v1.4.0", -            "source": { -                "type": "git", -                "url": "https://github.com/doctrine/collections.git", -                "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba", -                "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba", -                "shasum": "" -            }, -            "require": { -                "php": "^5.6 || ^7.0" -            }, -            "require-dev": { -                "doctrine/coding-standard": "~0.1@dev", -                "phpunit/phpunit": "^5.7" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "1.3.x-dev" -                } -            }, -            "autoload": { -                "psr-0": { -                    "Doctrine\\Common\\Collections\\": "lib/" -                } -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "Roman Borschel", -                    "email": "roman@code-factory.org" -                }, -                { -                    "name": "Benjamin Eberlei", -                    "email": "kontakt@beberlei.de" -                }, -                { -                    "name": "Guilherme Blanco", -                    "email": "guilhermeblanco@gmail.com" -                }, -                { -                    "name": "Jonathan Wage", -                    "email": "jonwage@gmail.com" -                }, -                { -                    "name": "Johannes Schmitt", -                    "email": "schmittjoh@gmail.com" -                } -            ], -            "description": "Collections Abstraction library", -            "homepage": "http://www.doctrine-project.org", -            "keywords": [ -                "array", -                "collections", -                "iterator" -            ], -            "time": "2017-01-03T10:49:41+00:00" -        }, -        { -            "name": "doctrine/common", -            "version": "v2.7.3", -            "source": { -                "type": "git", -                "url": "https://github.com/doctrine/common.git", -                "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9", -                "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9", -                "shasum": "" -            }, -            "require": { -                "doctrine/annotations": "1.*", -                "doctrine/cache": "1.*", -                "doctrine/collections": "1.*", -                "doctrine/inflector": "1.*", -                "doctrine/lexer": "1.*", -                "php": "~5.6|~7.0" -            }, -            "require-dev": { -                "phpunit/phpunit": "^5.4.6" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "2.7.x-dev" -                } -            }, -            "autoload": { -                "psr-4": { -                    "Doctrine\\Common\\": "lib/Doctrine/Common" -                } -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "Roman Borschel", -                    "email": "roman@code-factory.org" -                }, -                { -                    "name": "Benjamin Eberlei", -                    "email": "kontakt@beberlei.de" -                }, -                { -                    "name": "Guilherme Blanco", -                    "email": "guilhermeblanco@gmail.com" -                }, -                { -                    "name": "Jonathan Wage", -                    "email": "jonwage@gmail.com" -                }, -                { -                    "name": "Johannes Schmitt", -                    "email": "schmittjoh@gmail.com" -                } -            ], -            "description": "Common Library for Doctrine projects", -            "homepage": "http://www.doctrine-project.org", -            "keywords": [ -                "annotations", -                "collections", -                "eventmanager", -                "persistence", -                "spl" -            ], -            "time": "2017-07-22T08:35:12+00:00" -        }, -        { -            "name": "doctrine/dbal", -            "version": "v2.5.13", -            "source": { -                "type": "git", -                "url": "https://github.com/doctrine/dbal.git", -                "reference": "729340d8d1eec8f01bff708e12e449a3415af873" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/doctrine/dbal/zipball/729340d8d1eec8f01bff708e12e449a3415af873", -                "reference": "729340d8d1eec8f01bff708e12e449a3415af873", -                "shasum": "" -            }, -            "require": { -                "doctrine/common": ">=2.4,<2.8-dev", -                "php": ">=5.3.2" -            }, -            "require-dev": { -                "phpunit/phpunit": "4.*", -                "symfony/console": "2.*||^3.0" -            }, -            "suggest": { -                "symfony/console": "For helpful console commands such as SQL execution and import of files." -            }, -            "bin": [ -                "bin/doctrine-dbal" -            ], -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "2.5.x-dev" -                } -            }, -            "autoload": { -                "psr-0": { -                    "Doctrine\\DBAL\\": "lib/" -                } -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "Roman Borschel", -                    "email": "roman@code-factory.org" -                }, -                { -                    "name": "Benjamin Eberlei", -                    "email": "kontakt@beberlei.de" -                }, -                { -                    "name": "Guilherme Blanco", -                    "email": "guilhermeblanco@gmail.com" -                }, -                { -                    "name": "Jonathan Wage", -                    "email": "jonwage@gmail.com" -                } -            ], -            "description": "Database Abstraction Layer", -            "homepage": "http://www.doctrine-project.org", -            "keywords": [ -                "database", -                "dbal", -                "persistence", -                "queryobject" -            ], -            "time": "2017-07-22T20:44:48+00:00" -        }, -        { -            "name": "doctrine/doctrine-bundle", -            "version": "1.8.1", -            "source": { -                "type": "git", -                "url": "https://github.com/doctrine/DoctrineBundle.git", -                "reference": "eb6e4fb904a459be28872765ab6e2d246aac7c87" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/eb6e4fb904a459be28872765ab6e2d246aac7c87", -                "reference": "eb6e4fb904a459be28872765ab6e2d246aac7c87", -                "shasum": "" -            }, -            "require": { -                "doctrine/dbal": "^2.5.12", -                "doctrine/doctrine-cache-bundle": "~1.2", -                "jdorn/sql-formatter": "^1.2.16", -                "php": "^5.5.9|^7.0", -                "symfony/console": "~2.7|~3.0|~4.0", -                "symfony/dependency-injection": "~2.7|~3.0|~4.0", -                "symfony/doctrine-bridge": "~2.7|~3.0|~4.0", -                "symfony/framework-bundle": "~2.7|~3.0|~4.0" -            }, -            "conflict": { -                "symfony/http-foundation": "<2.6" -            }, -            "require-dev": { -                "doctrine/orm": "~2.3", -                "phpunit/phpunit": "^4.8.36|^5.7|^6.4", -                "satooshi/php-coveralls": "^1.0", -                "symfony/phpunit-bridge": "~2.7|~3.0|~4.0", -                "symfony/property-info": "~2.8|~3.0|~4.0", -                "symfony/validator": "~2.7|~3.0|~4.0", -                "symfony/web-profiler-bundle": "~2.7|~3.0|~4.0", -                "symfony/yaml": "~2.7|~3.0|~4.0", -                "twig/twig": "~1.26|~2.0" -            }, -            "suggest": { -                "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.", -                "symfony/web-profiler-bundle": "To use the data collector." -            }, -            "type": "symfony-bundle", -            "extra": { -                "branch-alias": { -                    "dev-master": "1.8.x-dev" -                } -            }, -            "autoload": { -                "psr-4": { -                    "Doctrine\\Bundle\\DoctrineBundle\\": "" -                } -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "Symfony Community", -                    "homepage": "http://symfony.com/contributors" -                }, -                { -                    "name": "Benjamin Eberlei", -                    "email": "kontakt@beberlei.de" -                }, -                { -                    "name": "Doctrine Project", -                    "homepage": "http://www.doctrine-project.org/" -                }, -                { -                    "name": "Fabien Potencier", -                    "email": "fabien@symfony.com" -                } -            ], -            "description": "Symfony DoctrineBundle", -            "homepage": "http://www.doctrine-project.org", -            "keywords": [ -                "database", -                "dbal", -                "orm", -                "persistence" -            ], -            "time": "2017-11-24T13:09:19+00:00" -        }, -        { -            "name": "doctrine/doctrine-cache-bundle", -            "version": "1.3.2", -            "source": { -                "type": "git", -                "url": "https://github.com/doctrine/DoctrineCacheBundle.git", -                "reference": "9baecbd6bfdd1123b0cf8c1b88fee0170a84ddd1" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/doctrine/DoctrineCacheBundle/zipball/9baecbd6bfdd1123b0cf8c1b88fee0170a84ddd1", -                "reference": "9baecbd6bfdd1123b0cf8c1b88fee0170a84ddd1", -                "shasum": "" -            }, -            "require": { -                "doctrine/cache": "^1.4.2", -                "doctrine/inflector": "~1.0", -                "php": ">=5.3.2", -                "symfony/doctrine-bridge": "~2.2|~3.0|~4.0" -            }, -            "require-dev": { -                "instaclick/coding-standard": "~1.1", -                "instaclick/object-calisthenics-sniffs": "dev-master", -                "instaclick/symfony2-coding-standard": "dev-remaster", -                "phpunit/phpunit": "~4", -                "predis/predis": "~0.8", -                "satooshi/php-coveralls": "^1.0", -                "squizlabs/php_codesniffer": "~1.5", -                "symfony/console": "~2.2|~3.0|~4.0", -                "symfony/finder": "~2.2|~3.0|~4.0", -                "symfony/framework-bundle": "~2.2|~3.0|~4.0", -                "symfony/phpunit-bridge": "~2.7|~3.0|~4.0", -                "symfony/security-acl": "~2.3|~3.0", -                "symfony/validator": "~2.2|~3.0|~4.0", -                "symfony/yaml": "~2.2|~3.0|~4.0" -            }, -            "suggest": { -                "symfony/security-acl": "For using this bundle to cache ACLs" -            }, -            "type": "symfony-bundle", -            "extra": { -                "branch-alias": { -                    "dev-master": "1.3.x-dev" -                } -            }, -            "autoload": { -                "psr-4": { -                    "Doctrine\\Bundle\\DoctrineCacheBundle\\": "" -                } -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "Symfony Community", -                    "homepage": "http://symfony.com/contributors" -                }, -                { -                    "name": "Benjamin Eberlei", -                    "email": "kontakt@beberlei.de" -                }, -                { -                    "name": "Fabio B. Silva", -                    "email": "fabio.bat.silva@gmail.com" -                }, -                { -                    "name": "Guilherme Blanco", -                    "email": "guilhermeblanco@hotmail.com" -                }, -                { -                    "name": "Doctrine Project", -                    "homepage": "http://www.doctrine-project.org/" -                }, -                { -                    "name": "Fabien Potencier", -                    "email": "fabien@symfony.com" -                } -            ], -            "description": "Symfony Bundle for Doctrine Cache", -            "homepage": "http://www.doctrine-project.org", -            "keywords": [ -                "cache", -                "caching" -            ], -            "time": "2017-10-12T17:23:29+00:00" -        }, -        { -            "name": "doctrine/inflector", -            "version": "v1.2.0", -            "source": { -                "type": "git", -                "url": "https://github.com/doctrine/inflector.git", -                "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462", -                "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462", -                "shasum": "" -            }, -            "require": { -                "php": "^7.0" -            }, -            "require-dev": { -                "phpunit/phpunit": "^6.2" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "1.2.x-dev" -                } -            }, -            "autoload": { -                "psr-4": { -                    "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector" -                } -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "Roman Borschel", -                    "email": "roman@code-factory.org" -                }, -                { -                    "name": "Benjamin Eberlei", -                    "email": "kontakt@beberlei.de" -                }, -                { -                    "name": "Guilherme Blanco", -                    "email": "guilhermeblanco@gmail.com" -                }, -                { -                    "name": "Jonathan Wage", -                    "email": "jonwage@gmail.com" -                }, -                { -                    "name": "Johannes Schmitt", -                    "email": "schmittjoh@gmail.com" -                } -            ], -            "description": "Common String Manipulations with regard to casing and singular/plural rules.", -            "homepage": "http://www.doctrine-project.org", -            "keywords": [ -                "inflection", -                "pluralize", -                "singularize", -                "string" -            ], -            "time": "2017-07-22T12:18:28+00:00" -        }, -        { -            "name": "doctrine/instantiator", -            "version": "1.0.5", -            "source": { -                "type": "git", -                "url": "https://github.com/doctrine/instantiator.git", -                "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d", -                "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d", -                "shasum": "" -            }, -            "require": { -                "php": ">=5.3,<8.0-DEV" -            }, -            "require-dev": { -                "athletic/athletic": "~0.1.8", -                "ext-pdo": "*", -                "ext-phar": "*", -                "phpunit/phpunit": "~4.0", -                "squizlabs/php_codesniffer": "~2.0" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "1.0.x-dev" -                } -            }, -            "autoload": { -                "psr-4": { -                    "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" -                } -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "Marco Pivetta", -                    "email": "ocramius@gmail.com", -                    "homepage": "http://ocramius.github.com/" -                } -            ], -            "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", -            "homepage": "https://github.com/doctrine/instantiator", -            "keywords": [ -                "constructor", -                "instantiate" -            ], -            "time": "2015-06-14T21:17:01+00:00" -        }, -        { -            "name": "doctrine/lexer", -            "version": "v1.0.1", -            "source": { -                "type": "git", -                "url": "https://github.com/doctrine/lexer.git", -                "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c", -                "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c", -                "shasum": "" -            }, -            "require": { -                "php": ">=5.3.2" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "1.0.x-dev" -                } -            }, -            "autoload": { -                "psr-0": { -                    "Doctrine\\Common\\Lexer\\": "lib/" -                } -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "Roman Borschel", -                    "email": "roman@code-factory.org" -                }, -                { -                    "name": "Guilherme Blanco", -                    "email": "guilhermeblanco@gmail.com" -                }, -                { -                    "name": "Johannes Schmitt", -                    "email": "schmittjoh@gmail.com" -                } -            ], -            "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.", -            "homepage": "http://www.doctrine-project.org", -            "keywords": [ -                "lexer", -                "parser" -            ], -            "time": "2014-09-09T13:34:57+00:00" -        }, -        { -            "name": "doctrine/orm", -            "version": "v2.5.13", -            "source": { -                "type": "git", -                "url": "https://github.com/doctrine/doctrine2.git", -                "reference": "93103f44a3e36e7b48165b6e6b736833f33b18ef" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/doctrine/doctrine2/zipball/93103f44a3e36e7b48165b6e6b736833f33b18ef", -                "reference": "93103f44a3e36e7b48165b6e6b736833f33b18ef", -                "shasum": "" -            }, -            "require": { -                "doctrine/cache": "~1.4", -                "doctrine/collections": "~1.2", -                "doctrine/common": ">=2.5-dev,<2.9-dev", -                "doctrine/dbal": ">=2.5-dev,<2.7-dev", -                "doctrine/instantiator": "^1.0.1", -                "ext-pdo": "*", -                "php": ">=5.4", -                "symfony/console": "~2.5|~3.0|~4.0" -            }, -            "require-dev": { -                "phpunit/phpunit": "~4.0", -                "symfony/yaml": "~2.3|~3.0|~4.0" -            }, -            "suggest": { -                "symfony/yaml": "If you want to use YAML Metadata Mapping Driver" -            }, -            "bin": [ -                "bin/doctrine", -                "bin/doctrine.php" -            ], -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "2.6.x-dev" -                } -            }, -            "autoload": { -                "psr-0": { -                    "Doctrine\\ORM\\": "lib/" -                } -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "Roman Borschel", -                    "email": "roman@code-factory.org" -                }, -                { -                    "name": "Benjamin Eberlei", -                    "email": "kontakt@beberlei.de" -                }, -                { -                    "name": "Guilherme Blanco", -                    "email": "guilhermeblanco@gmail.com" -                }, -                { -                    "name": "Jonathan Wage", -                    "email": "jonwage@gmail.com" -                } -            ], -            "description": "Object-Relational-Mapper for PHP", -            "homepage": "http://www.doctrine-project.org", -            "keywords": [ -                "database", -                "orm" -            ], -            "time": "2017-11-27T23:25:55+00:00" -        }, -        { -            "name": "fig/link-util", -            "version": "1.0.0", -            "source": { -                "type": "git", -                "url": "https://github.com/php-fig/link-util.git", -                "reference": "1a07821801a148be4add11ab0603e4af55a72fac" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/php-fig/link-util/zipball/1a07821801a148be4add11ab0603e4af55a72fac", -                "reference": "1a07821801a148be4add11ab0603e4af55a72fac", -                "shasum": "" -            }, -            "require": { -                "php": ">=5.5.0", -                "psr/link": "~1.0@dev" -            }, -            "require-dev": { -                "phpunit/phpunit": "^5.1", -                "squizlabs/php_codesniffer": "^2.3.1" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "1.0.x-dev" -                } -            }, -            "autoload": { -                "psr-4": { -                    "Fig\\Link\\": "src/" -                } -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "PHP-FIG", -                    "homepage": "http://www.php-fig.org/" -                } -            ], -            "description": "Common utility implementations for HTTP links", -            "keywords": [ -                "http", -                "http-link", -                "link", -                "psr", -                "psr-13", -                "rest" -            ], -            "time": "2016-10-17T18:31:11+00:00" -        }, -        { -            "name": "incenteev/composer-parameter-handler", -            "version": "v2.1.2", -            "source": { -                "type": "git", -                "url": "https://github.com/Incenteev/ParameterHandler.git", -                "reference": "d7ce7f06136109e81d1cb9d57066c4d4a99cf1cc" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/Incenteev/ParameterHandler/zipball/d7ce7f06136109e81d1cb9d57066c4d4a99cf1cc", -                "reference": "d7ce7f06136109e81d1cb9d57066c4d4a99cf1cc", -                "shasum": "" -            }, -            "require": { -                "php": ">=5.3.3", -                "symfony/yaml": "~2.3|~3.0" -            }, -            "require-dev": { -                "composer/composer": "1.0.*@dev", -                "phpspec/prophecy-phpunit": "~1.0", -                "symfony/filesystem": "~2.2" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "2.1.x-dev" -                } -            }, -            "autoload": { -                "psr-4": { -                    "Incenteev\\ParameterHandler\\": "" -                } -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "Christophe Coevoet", -                    "email": "stof@notk.org" -                } -            ], -            "description": "Composer script handling your ignored parameter file", -            "homepage": "https://github.com/Incenteev/ParameterHandler", -            "keywords": [ -                "parameters management" -            ], -            "time": "2015-11-10T17:04:01+00:00" -        }, -        { -            "name": "jdorn/sql-formatter", -            "version": "v1.2.17", -            "source": { -                "type": "git", -                "url": "https://github.com/jdorn/sql-formatter.git", -                "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/jdorn/sql-formatter/zipball/64990d96e0959dff8e059dfcdc1af130728d92bc", -                "reference": "64990d96e0959dff8e059dfcdc1af130728d92bc", -                "shasum": "" -            }, -            "require": { -                "php": ">=5.2.4" -            }, -            "require-dev": { -                "phpunit/phpunit": "3.7.*" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "1.3.x-dev" -                } -            }, -            "autoload": { -                "classmap": [ -                    "lib" -                ] -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "Jeremy Dorn", -                    "email": "jeremy@jeremydorn.com", -                    "homepage": "http://jeremydorn.com/" -                } -            ], -            "description": "a PHP SQL highlighting library", -            "homepage": "https://github.com/jdorn/sql-formatter/", -            "keywords": [ -                "highlight", -                "sql" -            ], -            "time": "2014-01-12T16:20:24+00:00" -        }, -        { -            "name": "monolog/monolog", -            "version": "1.23.0", -            "source": { -                "type": "git", -                "url": "https://github.com/Seldaek/monolog.git", -                "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fd8c787753b3a2ad11bc60c063cff1358a32a3b4", -                "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4", -                "shasum": "" -            }, -            "require": { -                "php": ">=5.3.0", -                "psr/log": "~1.0" -            }, -            "provide": { -                "psr/log-implementation": "1.0.0" -            }, -            "require-dev": { -                "aws/aws-sdk-php": "^2.4.9 || ^3.0", -                "doctrine/couchdb": "~1.0@dev", -                "graylog2/gelf-php": "~1.0", -                "jakub-onderka/php-parallel-lint": "0.9", -                "php-amqplib/php-amqplib": "~2.4", -                "php-console/php-console": "^3.1.3", -                "phpunit/phpunit": "~4.5", -                "phpunit/phpunit-mock-objects": "2.3.0", -                "ruflin/elastica": ">=0.90 <3.0", -                "sentry/sentry": "^0.13", -                "swiftmailer/swiftmailer": "^5.3|^6.0" -            }, -            "suggest": { -                "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", -                "doctrine/couchdb": "Allow sending log messages to a CouchDB server", -                "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)", -                "ext-mongo": "Allow sending log messages to a MongoDB server", -                "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", -                "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver", -                "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib", -                "php-console/php-console": "Allow sending log messages to Google Chrome", -                "rollbar/rollbar": "Allow sending log messages to Rollbar", -                "ruflin/elastica": "Allow sending log messages to an Elastic Search server", -                "sentry/sentry": "Allow sending log messages to a Sentry server" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "2.0.x-dev" -                } -            }, -            "autoload": { -                "psr-4": { -                    "Monolog\\": "src/Monolog" -                } -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "Jordi Boggiano", -                    "email": "j.boggiano@seld.be", -                    "homepage": "http://seld.be" -                } -            ], -            "description": "Sends your logs to files, sockets, inboxes, databases and various web services", -            "homepage": "http://github.com/Seldaek/monolog", -            "keywords": [ -                "log", -                "logging", -                "psr-3" -            ], -            "time": "2017-06-19T01:22:40+00:00" -        }, -        { -            "name": "myclabs/deep-copy", -            "version": "1.7.0", -            "source": { -                "type": "git", -                "url": "https://github.com/myclabs/DeepCopy.git", -                "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e", -                "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e", -                "shasum": "" -            }, -            "require": { -                "php": "^5.6 || ^7.0" -            }, -            "require-dev": { -                "doctrine/collections": "^1.0", -                "doctrine/common": "^2.6", -                "phpunit/phpunit": "^4.1" -            }, -            "type": "library", -            "autoload": { -                "psr-4": { -                    "DeepCopy\\": "src/DeepCopy/" -                }, -                "files": [ -                    "src/DeepCopy/deep_copy.php" -                ] -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "description": "Create deep copies (clones) of your objects", -            "keywords": [ -                "clone", -                "copy", -                "duplicate", -                "object", -                "object graph" -            ], -            "time": "2017-10-19T19:58:43+00:00" -        }, -        { -            "name": "paragonie/random_compat", -            "version": "v2.0.11", -            "source": { -                "type": "git", -                "url": "https://github.com/paragonie/random_compat.git", -                "reference": "5da4d3c796c275c55f057af5a643ae297d96b4d8" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/paragonie/random_compat/zipball/5da4d3c796c275c55f057af5a643ae297d96b4d8", -                "reference": "5da4d3c796c275c55f057af5a643ae297d96b4d8", -                "shasum": "" -            }, -            "require": { -                "php": ">=5.2.0" -            }, -            "require-dev": { -                "phpunit/phpunit": "4.*|5.*" -            }, -            "suggest": { -                "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes." -            }, -            "type": "library", -            "autoload": { -                "files": [ -                    "lib/random.php" -                ] -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "Paragon Initiative Enterprises", -                    "email": "security@paragonie.com", -                    "homepage": "https://paragonie.com" -                } -            ], -            "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7", -            "keywords": [ -                "csprng", -                "pseudorandom", -                "random" -            ], -            "time": "2017-09-27T21:40:39+00:00" -        }, -        { -            "name": "phpdocumentor/reflection-common", -            "version": "1.0.1", -            "source": { -                "type": "git", -                "url": "https://github.com/phpDocumentor/ReflectionCommon.git", -                "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6", -                "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6", -                "shasum": "" -            }, -            "require": { -                "php": ">=5.5" -            }, -            "require-dev": { -                "phpunit/phpunit": "^4.6" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "1.0.x-dev" -                } -            }, -            "autoload": { -                "psr-4": { -                    "phpDocumentor\\Reflection\\": [ -                        "src" -                    ] -                } -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "Jaap van Otterdijk", -                    "email": "opensource@ijaap.nl" -                } -            ], -            "description": "Common reflection classes used by phpdocumentor to reflect the code structure", -            "homepage": "http://www.phpdoc.org", -            "keywords": [ -                "FQSEN", -                "phpDocumentor", -                "phpdoc", -                "reflection", -                "static analysis" -            ], -            "time": "2017-09-11T18:02:19+00:00" -        }, -        { -            "name": "phpdocumentor/reflection-docblock", -            "version": "4.2.0", -            "source": { -                "type": "git", -                "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", -                "reference": "66465776cfc249844bde6d117abff1d22e06c2da" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/66465776cfc249844bde6d117abff1d22e06c2da", -                "reference": "66465776cfc249844bde6d117abff1d22e06c2da", -                "shasum": "" -            }, -            "require": { -                "php": "^7.0", -                "phpdocumentor/reflection-common": "^1.0.0", -                "phpdocumentor/type-resolver": "^0.4.0", -                "webmozart/assert": "^1.0" -            }, -            "require-dev": { -                "doctrine/instantiator": "~1.0.5", -                "mockery/mockery": "^1.0", -                "phpunit/phpunit": "^6.4" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "4.x-dev" -                } -            }, -            "autoload": { -                "psr-4": { -                    "phpDocumentor\\Reflection\\": [ -                        "src/" -                    ] -                } -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "Mike van Riel", -                    "email": "me@mikevanriel.com" -                } -            ], -            "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", -            "time": "2017-11-27T17:38:31+00:00" -        }, -        { -            "name": "phpdocumentor/type-resolver", -            "version": "0.4.0", -            "source": { -                "type": "git", -                "url": "https://github.com/phpDocumentor/TypeResolver.git", -                "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7", -                "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7", -                "shasum": "" -            }, -            "require": { -                "php": "^5.5 || ^7.0", -                "phpdocumentor/reflection-common": "^1.0" -            }, -            "require-dev": { -                "mockery/mockery": "^0.9.4", -                "phpunit/phpunit": "^5.2||^4.8.24" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "1.0.x-dev" -                } -            }, -            "autoload": { -                "psr-4": { -                    "phpDocumentor\\Reflection\\": [ -                        "src/" -                    ] -                } -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "Mike van Riel", -                    "email": "me@mikevanriel.com" -                } -            ], -            "time": "2017-07-14T14:27:02+00:00" -        }, -        { -            "name": "phpspec/prophecy", -            "version": "1.7.3", -            "source": { -                "type": "git", -                "url": "https://github.com/phpspec/prophecy.git", -                "reference": "e4ed002c67da8eceb0eb8ddb8b3847bb53c5c2bf" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/phpspec/prophecy/zipball/e4ed002c67da8eceb0eb8ddb8b3847bb53c5c2bf", -                "reference": "e4ed002c67da8eceb0eb8ddb8b3847bb53c5c2bf", -                "shasum": "" -            }, -            "require": { -                "doctrine/instantiator": "^1.0.2", -                "php": "^5.3|^7.0", -                "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0", -                "sebastian/comparator": "^1.1|^2.0", -                "sebastian/recursion-context": "^1.0|^2.0|^3.0" -            }, -            "require-dev": { -                "phpspec/phpspec": "^2.5|^3.2", -                "phpunit/phpunit": "^4.8.35 || ^5.7" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "1.7.x-dev" -                } -            }, -            "autoload": { -                "psr-0": { -                    "Prophecy\\": "src/" -                } -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "Konstantin Kudryashov", -                    "email": "ever.zet@gmail.com", -                    "homepage": "http://everzet.com" -                }, -                { -                    "name": "Marcello Duarte", -                    "email": "marcello.duarte@gmail.com" -                } -            ], -            "description": "Highly opinionated mocking framework for PHP 5.3+", -            "homepage": "https://github.com/phpspec/prophecy", -            "keywords": [ -                "Double", -                "Dummy", -                "fake", -                "mock", -                "spy", -                "stub" -            ], -            "time": "2017-11-24T13:59:53+00:00" -        }, -        { -            "name": "phpunit/php-code-coverage", -            "version": "4.0.8", -            "source": { -                "type": "git", -                "url": "https://github.com/sebastianbergmann/php-code-coverage.git", -                "reference": "ef7b2f56815df854e66ceaee8ebe9393ae36a40d" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ef7b2f56815df854e66ceaee8ebe9393ae36a40d", -                "reference": "ef7b2f56815df854e66ceaee8ebe9393ae36a40d", -                "shasum": "" -            }, -            "require": { -                "ext-dom": "*", -                "ext-xmlwriter": "*", -                "php": "^5.6 || ^7.0", -                "phpunit/php-file-iterator": "^1.3", -                "phpunit/php-text-template": "^1.2", -                "phpunit/php-token-stream": "^1.4.2 || ^2.0", -                "sebastian/code-unit-reverse-lookup": "^1.0", -                "sebastian/environment": "^1.3.2 || ^2.0", -                "sebastian/version": "^1.0 || ^2.0" -            }, -            "require-dev": { -                "ext-xdebug": "^2.1.4", -                "phpunit/phpunit": "^5.7" -            }, -            "suggest": { -                "ext-xdebug": "^2.5.1" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "4.0.x-dev" -                } -            }, -            "autoload": { -                "classmap": [ -                    "src/" -                ] -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "BSD-3-Clause" -            ], -            "authors": [ -                { -                    "name": "Sebastian Bergmann", -                    "email": "sb@sebastian-bergmann.de", -                    "role": "lead" -                } -            ], -            "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", -            "homepage": "https://github.com/sebastianbergmann/php-code-coverage", -            "keywords": [ -                "coverage", -                "testing", -                "xunit" -            ], -            "time": "2017-04-02T07:44:40+00:00" -        }, -        { -            "name": "phpunit/php-file-iterator", -            "version": "1.4.5", -            "source": { -                "type": "git", -                "url": "https://github.com/sebastianbergmann/php-file-iterator.git", -                "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4", -                "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4", -                "shasum": "" -            }, -            "require": { -                "php": ">=5.3.3" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "1.4.x-dev" -                } -            }, -            "autoload": { -                "classmap": [ -                    "src/" -                ] -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "BSD-3-Clause" -            ], -            "authors": [ -                { -                    "name": "Sebastian Bergmann", -                    "email": "sb@sebastian-bergmann.de", -                    "role": "lead" -                } -            ], -            "description": "FilterIterator implementation that filters files based on a list of suffixes.", -            "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", -            "keywords": [ -                "filesystem", -                "iterator" -            ], -            "time": "2017-11-27T13:52:08+00:00" -        }, -        { -            "name": "phpunit/php-text-template", -            "version": "1.2.1", -            "source": { -                "type": "git", -                "url": "https://github.com/sebastianbergmann/php-text-template.git", -                "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686", -                "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686", -                "shasum": "" -            }, -            "require": { -                "php": ">=5.3.3" -            }, -            "type": "library", -            "autoload": { -                "classmap": [ -                    "src/" -                ] -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "BSD-3-Clause" -            ], -            "authors": [ -                { -                    "name": "Sebastian Bergmann", -                    "email": "sebastian@phpunit.de", -                    "role": "lead" -                } -            ], -            "description": "Simple template engine.", -            "homepage": "https://github.com/sebastianbergmann/php-text-template/", -            "keywords": [ -                "template" -            ], -            "time": "2015-06-21T13:50:34+00:00" -        }, -        { -            "name": "phpunit/php-timer", -            "version": "1.0.9", -            "source": { -                "type": "git", -                "url": "https://github.com/sebastianbergmann/php-timer.git", -                "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f", -                "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f", -                "shasum": "" -            }, -            "require": { -                "php": "^5.3.3 || ^7.0" -            }, -            "require-dev": { -                "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "1.0-dev" -                } -            }, -            "autoload": { -                "classmap": [ -                    "src/" -                ] -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "BSD-3-Clause" -            ], -            "authors": [ -                { -                    "name": "Sebastian Bergmann", -                    "email": "sb@sebastian-bergmann.de", -                    "role": "lead" -                } -            ], -            "description": "Utility class for timing", -            "homepage": "https://github.com/sebastianbergmann/php-timer/", -            "keywords": [ -                "timer" -            ], -            "time": "2017-02-26T11:10:40+00:00" -        }, -        { -            "name": "phpunit/php-token-stream", -            "version": "2.0.2", -            "source": { -                "type": "git", -                "url": "https://github.com/sebastianbergmann/php-token-stream.git", -                "reference": "791198a2c6254db10131eecfe8c06670700904db" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db", -                "reference": "791198a2c6254db10131eecfe8c06670700904db", -                "shasum": "" -            }, -            "require": { -                "ext-tokenizer": "*", -                "php": "^7.0" -            }, -            "require-dev": { -                "phpunit/phpunit": "^6.2.4" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "2.0-dev" -                } -            }, -            "autoload": { -                "classmap": [ -                    "src/" -                ] -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "BSD-3-Clause" -            ], -            "authors": [ -                { -                    "name": "Sebastian Bergmann", -                    "email": "sebastian@phpunit.de" -                } -            ], -            "description": "Wrapper around PHP's tokenizer extension.", -            "homepage": "https://github.com/sebastianbergmann/php-token-stream/", -            "keywords": [ -                "tokenizer" -            ], -            "time": "2017-11-27T05:48:46+00:00" -        }, -        { -            "name": "phpunit/phpunit", -            "version": "5.7.25", -            "source": { -                "type": "git", -                "url": "https://github.com/sebastianbergmann/phpunit.git", -                "reference": "4b1c822a68ae6577df38a59eb49b046712ec0f6a" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/4b1c822a68ae6577df38a59eb49b046712ec0f6a", -                "reference": "4b1c822a68ae6577df38a59eb49b046712ec0f6a", -                "shasum": "" -            }, -            "require": { -                "ext-dom": "*", -                "ext-json": "*", -                "ext-libxml": "*", -                "ext-mbstring": "*", -                "ext-xml": "*", -                "myclabs/deep-copy": "~1.3", -                "php": "^5.6 || ^7.0", -                "phpspec/prophecy": "^1.6.2", -                "phpunit/php-code-coverage": "^4.0.4", -                "phpunit/php-file-iterator": "~1.4", -                "phpunit/php-text-template": "~1.2", -                "phpunit/php-timer": "^1.0.6", -                "phpunit/phpunit-mock-objects": "^3.2", -                "sebastian/comparator": "^1.2.4", -                "sebastian/diff": "^1.4.3", -                "sebastian/environment": "^1.3.4 || ^2.0", -                "sebastian/exporter": "~2.0", -                "sebastian/global-state": "^1.1", -                "sebastian/object-enumerator": "~2.0", -                "sebastian/resource-operations": "~1.0", -                "sebastian/version": "~1.0.3|~2.0", -                "symfony/yaml": "~2.1|~3.0|~4.0" -            }, -            "conflict": { -                "phpdocumentor/reflection-docblock": "3.0.2" -            }, -            "require-dev": { -                "ext-pdo": "*" -            }, -            "suggest": { -                "ext-xdebug": "*", -                "phpunit/php-invoker": "~1.1" -            }, -            "bin": [ -                "phpunit" -            ], -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "5.7.x-dev" -                } -            }, -            "autoload": { -                "classmap": [ -                    "src/" -                ] -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "BSD-3-Clause" -            ], -            "authors": [ -                { -                    "name": "Sebastian Bergmann", -                    "email": "sebastian@phpunit.de", -                    "role": "lead" -                } -            ], -            "description": "The PHP Unit Testing framework.", -            "homepage": "https://phpunit.de/", -            "keywords": [ -                "phpunit", -                "testing", -                "xunit" -            ], -            "time": "2017-11-14T14:50:51+00:00" -        }, -        { -            "name": "phpunit/phpunit-mock-objects", -            "version": "3.4.4", -            "source": { -                "type": "git", -                "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git", -                "reference": "a23b761686d50a560cc56233b9ecf49597cc9118" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/a23b761686d50a560cc56233b9ecf49597cc9118", -                "reference": "a23b761686d50a560cc56233b9ecf49597cc9118", -                "shasum": "" -            }, -            "require": { -                "doctrine/instantiator": "^1.0.2", -                "php": "^5.6 || ^7.0", -                "phpunit/php-text-template": "^1.2", -                "sebastian/exporter": "^1.2 || ^2.0" -            }, -            "conflict": { -                "phpunit/phpunit": "<5.4.0" -            }, -            "require-dev": { -                "phpunit/phpunit": "^5.4" -            }, -            "suggest": { -                "ext-soap": "*" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "3.2.x-dev" -                } -            }, -            "autoload": { -                "classmap": [ -                    "src/" -                ] -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "BSD-3-Clause" -            ], -            "authors": [ -                { -                    "name": "Sebastian Bergmann", -                    "email": "sb@sebastian-bergmann.de", -                    "role": "lead" -                } -            ], -            "description": "Mock Object library for PHPUnit", -            "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/", -            "keywords": [ -                "mock", -                "xunit" -            ], -            "time": "2017-06-30T09:13:00+00:00" -        }, -        { -            "name": "psr/cache", -            "version": "1.0.1", -            "source": { -                "type": "git", -                "url": "https://github.com/php-fig/cache.git", -                "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8", -                "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8", -                "shasum": "" -            }, -            "require": { -                "php": ">=5.3.0" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "1.0.x-dev" -                } -            }, -            "autoload": { -                "psr-4": { -                    "Psr\\Cache\\": "src/" -                } -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "PHP-FIG", -                    "homepage": "http://www.php-fig.org/" -                } -            ], -            "description": "Common interface for caching libraries", -            "keywords": [ -                "cache", -                "psr", -                "psr-6" -            ], -            "time": "2016-08-06T20:24:11+00:00" -        }, -        { -            "name": "psr/container", -            "version": "1.0.0", -            "source": { -                "type": "git", -                "url": "https://github.com/php-fig/container.git", -                "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f", -                "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f", -                "shasum": "" -            }, -            "require": { -                "php": ">=5.3.0" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "1.0.x-dev" -                } -            }, -            "autoload": { -                "psr-4": { -                    "Psr\\Container\\": "src/" -                } -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "PHP-FIG", -                    "homepage": "http://www.php-fig.org/" -                } -            ], -            "description": "Common Container Interface (PHP FIG PSR-11)", -            "homepage": "https://github.com/php-fig/container", -            "keywords": [ -                "PSR-11", -                "container", -                "container-interface", -                "container-interop", -                "psr" -            ], -            "time": "2017-02-14T16:28:37+00:00" -        }, -        { -            "name": "psr/link", -            "version": "1.0.0", -            "source": { -                "type": "git", -                "url": "https://github.com/php-fig/link.git", -                "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/php-fig/link/zipball/eea8e8662d5cd3ae4517c9b864493f59fca95562", -                "reference": "eea8e8662d5cd3ae4517c9b864493f59fca95562", -                "shasum": "" -            }, -            "require": { -                "php": ">=5.3.0" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "1.0.x-dev" -                } -            }, -            "autoload": { -                "psr-4": { -                    "Psr\\Link\\": "src/" -                } -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "PHP-FIG", -                    "homepage": "http://www.php-fig.org/" -                } -            ], -            "description": "Common interfaces for HTTP links", -            "keywords": [ -                "http", -                "http-link", -                "link", -                "psr", -                "psr-13", -                "rest" -            ], -            "time": "2016-10-28T16:06:13+00:00" -        }, -        { -            "name": "psr/log", -            "version": "1.0.2", -            "source": { -                "type": "git", -                "url": "https://github.com/php-fig/log.git", -                "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d", -                "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d", -                "shasum": "" -            }, -            "require": { -                "php": ">=5.3.0" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "1.0.x-dev" -                } -            }, -            "autoload": { -                "psr-4": { -                    "Psr\\Log\\": "Psr/Log/" -                } -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "PHP-FIG", -                    "homepage": "http://www.php-fig.org/" -                } -            ], -            "description": "Common interface for logging libraries", -            "homepage": "https://github.com/php-fig/log", -            "keywords": [ -                "log", -                "psr", -                "psr-3" -            ], -            "time": "2016-10-10T12:19:37+00:00" -        }, -        { -            "name": "psr/simple-cache", -            "version": "1.0.0", -            "source": { -                "type": "git", -                "url": "https://github.com/php-fig/simple-cache.git", -                "reference": "753fa598e8f3b9966c886fe13f370baa45ef0e24" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/753fa598e8f3b9966c886fe13f370baa45ef0e24", -                "reference": "753fa598e8f3b9966c886fe13f370baa45ef0e24", -                "shasum": "" -            }, -            "require": { -                "php": ">=5.3.0" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "1.0.x-dev" -                } -            }, -            "autoload": { -                "psr-4": { -                    "Psr\\SimpleCache\\": "src/" -                } -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "PHP-FIG", -                    "homepage": "http://www.php-fig.org/" -                } -            ], -            "description": "Common interfaces for simple caching", -            "keywords": [ -                "cache", -                "caching", -                "psr", -                "psr-16", -                "simple-cache" -            ], -            "time": "2017-01-02T13:31:39+00:00" -        }, -        { -            "name": "sebastian/code-unit-reverse-lookup", -            "version": "1.0.1", -            "source": { -                "type": "git", -                "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", -                "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", -                "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", -                "shasum": "" -            }, -            "require": { -                "php": "^5.6 || ^7.0" -            }, -            "require-dev": { -                "phpunit/phpunit": "^5.7 || ^6.0" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "1.0.x-dev" -                } -            }, -            "autoload": { -                "classmap": [ -                    "src/" -                ] -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "BSD-3-Clause" -            ], -            "authors": [ -                { -                    "name": "Sebastian Bergmann", -                    "email": "sebastian@phpunit.de" -                } -            ], -            "description": "Looks up which function or method a line of code belongs to", -            "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", -            "time": "2017-03-04T06:30:41+00:00" -        }, -        { -            "name": "sebastian/comparator", -            "version": "1.2.4", -            "source": { -                "type": "git", -                "url": "https://github.com/sebastianbergmann/comparator.git", -                "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2b7424b55f5047b47ac6e5ccb20b2aea4011d9be", -                "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be", -                "shasum": "" -            }, -            "require": { -                "php": ">=5.3.3", -                "sebastian/diff": "~1.2", -                "sebastian/exporter": "~1.2 || ~2.0" -            }, -            "require-dev": { -                "phpunit/phpunit": "~4.4" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "1.2.x-dev" -                } -            }, -            "autoload": { -                "classmap": [ -                    "src/" -                ] -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "BSD-3-Clause" -            ], -            "authors": [ -                { -                    "name": "Jeff Welch", -                    "email": "whatthejeff@gmail.com" -                }, -                { -                    "name": "Volker Dusch", -                    "email": "github@wallbash.com" -                }, -                { -                    "name": "Bernhard Schussek", -                    "email": "bschussek@2bepublished.at" -                }, -                { -                    "name": "Sebastian Bergmann", -                    "email": "sebastian@phpunit.de" -                } -            ], -            "description": "Provides the functionality to compare PHP values for equality", -            "homepage": "http://www.github.com/sebastianbergmann/comparator", -            "keywords": [ -                "comparator", -                "compare", -                "equality" -            ], -            "time": "2017-01-29T09:50:25+00:00" -        }, -        { -            "name": "sebastian/diff", -            "version": "1.4.3", -            "source": { -                "type": "git", -                "url": "https://github.com/sebastianbergmann/diff.git", -                "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7f066a26a962dbe58ddea9f72a4e82874a3975a4", -                "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4", -                "shasum": "" -            }, -            "require": { -                "php": "^5.3.3 || ^7.0" -            }, -            "require-dev": { -                "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "1.4-dev" -                } -            }, -            "autoload": { -                "classmap": [ -                    "src/" -                ] -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "BSD-3-Clause" -            ], -            "authors": [ -                { -                    "name": "Kore Nordmann", -                    "email": "mail@kore-nordmann.de" -                }, -                { -                    "name": "Sebastian Bergmann", -                    "email": "sebastian@phpunit.de" -                } -            ], -            "description": "Diff implementation", -            "homepage": "https://github.com/sebastianbergmann/diff", -            "keywords": [ -                "diff" -            ], -            "time": "2017-05-22T07:24:03+00:00" -        }, -        { -            "name": "sebastian/environment", -            "version": "2.0.0", -            "source": { -                "type": "git", -                "url": "https://github.com/sebastianbergmann/environment.git", -                "reference": "5795ffe5dc5b02460c3e34222fee8cbe245d8fac" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/5795ffe5dc5b02460c3e34222fee8cbe245d8fac", -                "reference": "5795ffe5dc5b02460c3e34222fee8cbe245d8fac", -                "shasum": "" -            }, -            "require": { -                "php": "^5.6 || ^7.0" -            }, -            "require-dev": { -                "phpunit/phpunit": "^5.0" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "2.0.x-dev" -                } -            }, -            "autoload": { -                "classmap": [ -                    "src/" -                ] -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "BSD-3-Clause" -            ], -            "authors": [ -                { -                    "name": "Sebastian Bergmann", -                    "email": "sebastian@phpunit.de" -                } -            ], -            "description": "Provides functionality to handle HHVM/PHP environments", -            "homepage": "http://www.github.com/sebastianbergmann/environment", -            "keywords": [ -                "Xdebug", -                "environment", -                "hhvm" -            ], -            "time": "2016-11-26T07:53:53+00:00" -        }, -        { -            "name": "sebastian/exporter", -            "version": "2.0.0", -            "source": { -                "type": "git", -                "url": "https://github.com/sebastianbergmann/exporter.git", -                "reference": "ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4", -                "reference": "ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4", -                "shasum": "" -            }, -            "require": { -                "php": ">=5.3.3", -                "sebastian/recursion-context": "~2.0" -            }, -            "require-dev": { -                "ext-mbstring": "*", -                "phpunit/phpunit": "~4.4" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "2.0.x-dev" -                } -            }, -            "autoload": { -                "classmap": [ -                    "src/" -                ] -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "BSD-3-Clause" -            ], -            "authors": [ -                { -                    "name": "Jeff Welch", -                    "email": "whatthejeff@gmail.com" -                }, -                { -                    "name": "Volker Dusch", -                    "email": "github@wallbash.com" -                }, -                { -                    "name": "Bernhard Schussek", -                    "email": "bschussek@2bepublished.at" -                }, -                { -                    "name": "Sebastian Bergmann", -                    "email": "sebastian@phpunit.de" -                }, -                { -                    "name": "Adam Harvey", -                    "email": "aharvey@php.net" -                } -            ], -            "description": "Provides the functionality to export PHP variables for visualization", -            "homepage": "http://www.github.com/sebastianbergmann/exporter", -            "keywords": [ -                "export", -                "exporter" -            ], -            "time": "2016-11-19T08:54:04+00:00" -        }, -        { -            "name": "sebastian/global-state", -            "version": "1.1.1", -            "source": { -                "type": "git", -                "url": "https://github.com/sebastianbergmann/global-state.git", -                "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4", -                "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4", -                "shasum": "" -            }, -            "require": { -                "php": ">=5.3.3" -            }, -            "require-dev": { -                "phpunit/phpunit": "~4.2" -            }, -            "suggest": { -                "ext-uopz": "*" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "1.0-dev" -                } -            }, -            "autoload": { -                "classmap": [ -                    "src/" -                ] -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "BSD-3-Clause" -            ], -            "authors": [ -                { -                    "name": "Sebastian Bergmann", -                    "email": "sebastian@phpunit.de" -                } -            ], -            "description": "Snapshotting of global state", -            "homepage": "http://www.github.com/sebastianbergmann/global-state", -            "keywords": [ -                "global state" -            ], -            "time": "2015-10-12T03:26:01+00:00" -        }, -        { -            "name": "sebastian/object-enumerator", -            "version": "2.0.1", -            "source": { -                "type": "git", -                "url": "https://github.com/sebastianbergmann/object-enumerator.git", -                "reference": "1311872ac850040a79c3c058bea3e22d0f09cbb7" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/1311872ac850040a79c3c058bea3e22d0f09cbb7", -                "reference": "1311872ac850040a79c3c058bea3e22d0f09cbb7", -                "shasum": "" -            }, -            "require": { -                "php": ">=5.6", -                "sebastian/recursion-context": "~2.0" -            }, -            "require-dev": { -                "phpunit/phpunit": "~5" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "2.0.x-dev" -                } -            }, -            "autoload": { -                "classmap": [ -                    "src/" -                ] -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "BSD-3-Clause" -            ], -            "authors": [ -                { -                    "name": "Sebastian Bergmann", -                    "email": "sebastian@phpunit.de" -                } -            ], -            "description": "Traverses array structures and object graphs to enumerate all referenced objects", -            "homepage": "https://github.com/sebastianbergmann/object-enumerator/", -            "time": "2017-02-18T15:18:39+00:00" -        }, -        { -            "name": "sebastian/recursion-context", -            "version": "2.0.0", -            "source": { -                "type": "git", -                "url": "https://github.com/sebastianbergmann/recursion-context.git", -                "reference": "2c3ba150cbec723aa057506e73a8d33bdb286c9a" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/2c3ba150cbec723aa057506e73a8d33bdb286c9a", -                "reference": "2c3ba150cbec723aa057506e73a8d33bdb286c9a", -                "shasum": "" -            }, -            "require": { -                "php": ">=5.3.3" -            }, -            "require-dev": { -                "phpunit/phpunit": "~4.4" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "2.0.x-dev" -                } -            }, -            "autoload": { -                "classmap": [ -                    "src/" -                ] -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "BSD-3-Clause" -            ], -            "authors": [ -                { -                    "name": "Jeff Welch", -                    "email": "whatthejeff@gmail.com" -                }, -                { -                    "name": "Sebastian Bergmann", -                    "email": "sebastian@phpunit.de" -                }, -                { -                    "name": "Adam Harvey", -                    "email": "aharvey@php.net" -                } -            ], -            "description": "Provides functionality to recursively process PHP variables", -            "homepage": "http://www.github.com/sebastianbergmann/recursion-context", -            "time": "2016-11-19T07:33:16+00:00" -        }, -        { -            "name": "sebastian/resource-operations", -            "version": "1.0.0", -            "source": { -                "type": "git", -                "url": "https://github.com/sebastianbergmann/resource-operations.git", -                "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52", -                "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52", -                "shasum": "" -            }, -            "require": { -                "php": ">=5.6.0" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "1.0.x-dev" -                } -            }, -            "autoload": { -                "classmap": [ -                    "src/" -                ] -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "BSD-3-Clause" -            ], -            "authors": [ -                { -                    "name": "Sebastian Bergmann", -                    "email": "sebastian@phpunit.de" -                } -            ], -            "description": "Provides a list of PHP built-in functions that operate on resources", -            "homepage": "https://www.github.com/sebastianbergmann/resource-operations", -            "time": "2015-07-28T20:34:47+00:00" -        }, -        { -            "name": "sebastian/version", -            "version": "2.0.1", -            "source": { -                "type": "git", -                "url": "https://github.com/sebastianbergmann/version.git", -                "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019", -                "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019", -                "shasum": "" -            }, -            "require": { -                "php": ">=5.6" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "2.0.x-dev" -                } -            }, -            "autoload": { -                "classmap": [ -                    "src/" -                ] -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "BSD-3-Clause" -            ], -            "authors": [ -                { -                    "name": "Sebastian Bergmann", -                    "email": "sebastian@phpunit.de", -                    "role": "lead" -                } -            ], -            "description": "Library that helps with managing the version number of Git-hosted PHP projects", -            "homepage": "https://github.com/sebastianbergmann/version", -            "time": "2016-10-03T07:35:21+00:00" -        }, -        { -            "name": "sensio/distribution-bundle", -            "version": "v5.0.21", -            "source": { -                "type": "git", -                "url": "https://github.com/sensiolabs/SensioDistributionBundle.git", -                "reference": "eb6266b3b472e4002538610b28a0a04bcf94891a" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/sensiolabs/SensioDistributionBundle/zipball/eb6266b3b472e4002538610b28a0a04bcf94891a", -                "reference": "eb6266b3b472e4002538610b28a0a04bcf94891a", -                "shasum": "" -            }, -            "require": { -                "php": ">=5.3.9", -                "sensiolabs/security-checker": "~3.0|~4.0", -                "symfony/class-loader": "~2.3|~3.0", -                "symfony/config": "~2.3|~3.0", -                "symfony/dependency-injection": "~2.3|~3.0", -                "symfony/filesystem": "~2.3|~3.0", -                "symfony/http-kernel": "~2.3|~3.0", -                "symfony/process": "~2.3|~3.0" -            }, -            "type": "symfony-bundle", -            "extra": { -                "branch-alias": { -                    "dev-master": "5.0.x-dev" -                } -            }, -            "autoload": { -                "psr-4": { -                    "Sensio\\Bundle\\DistributionBundle\\": "" -                } -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "Fabien Potencier", -                    "email": "fabien@symfony.com" -                } -            ], -            "description": "Base bundle for Symfony Distributions", -            "keywords": [ -                "configuration", -                "distribution" -            ], -            "time": "2017-08-25T16:55:44+00:00" -        }, -        { -            "name": "sensio/framework-extra-bundle", -            "version": "v3.0.28", -            "source": { -                "type": "git", -                "url": "https://github.com/sensiolabs/SensioFrameworkExtraBundle.git", -                "reference": "65eadf9e3fd5c47eee7986b306a5aed8affe6496" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/sensiolabs/SensioFrameworkExtraBundle/zipball/65eadf9e3fd5c47eee7986b306a5aed8affe6496", -                "reference": "65eadf9e3fd5c47eee7986b306a5aed8affe6496", -                "shasum": "" -            }, -            "require": { -                "doctrine/common": "~2.2", -                "symfony/dependency-injection": "~2.3|~3.0", -                "symfony/framework-bundle": "~2.3|~3.0|~4.0" -            }, -            "require-dev": { -                "doctrine/doctrine-bundle": "~1.5", -                "doctrine/orm": "~2.4,>=2.4.5", -                "symfony/asset": "~2.7|~3.0|~4.0", -                "symfony/browser-kit": "~2.3|~3.0|~4.0", -                "symfony/dom-crawler": "~2.3|~3.0|~4.0", -                "symfony/expression-language": "~2.4|~3.0|~4.0", -                "symfony/finder": "~2.3|~3.0|~4.0", -                "symfony/phpunit-bridge": "~3.2|~4.0", -                "symfony/psr-http-message-bridge": "^0.3|^1.0", -                "symfony/security-bundle": "~2.4|~3.0|~4.0", -                "symfony/templating": "~2.3|~3.0|~4.0", -                "symfony/translation": "~2.3|~3.0|~4.0", -                "symfony/twig-bundle": "~2.3|~3.0|~4.0", -                "symfony/yaml": "~2.3|~3.0|~4.0", -                "twig/twig": "~1.12|~2.0", -                "zendframework/zend-diactoros": "^1.3" -            }, -            "suggest": { -                "symfony/expression-language": "", -                "symfony/psr-http-message-bridge": "To use the PSR-7 converters", -                "symfony/security-bundle": "" -            }, -            "type": "symfony-bundle", -            "extra": { -                "branch-alias": { -                    "dev-master": "3.0.x-dev" -                } -            }, -            "autoload": { -                "psr-4": { -                    "Sensio\\Bundle\\FrameworkExtraBundle\\": "" -                } -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "Fabien Potencier", -                    "email": "fabien@symfony.com" -                } -            ], -            "description": "This bundle provides a way to configure your controllers with annotations", -            "keywords": [ -                "annotations", -                "controllers" -            ], -            "time": "2017-10-12T17:37:20+00:00" -        }, -        { -            "name": "sensiolabs/security-checker", -            "version": "v4.1.6", -            "source": { -                "type": "git", -                "url": "https://github.com/sensiolabs/security-checker.git", -                "reference": "387b6a3b723ba35588b33d5f8d14e28ed608bd30" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/sensiolabs/security-checker/zipball/387b6a3b723ba35588b33d5f8d14e28ed608bd30", -                "reference": "387b6a3b723ba35588b33d5f8d14e28ed608bd30", -                "shasum": "" -            }, -            "require": { -                "composer/ca-bundle": "^1.0", -                "symfony/console": "~2.7|~3.0|~4.0" -            }, -            "bin": [ -                "security-checker" -            ], -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "4.1-dev" -                } -            }, -            "autoload": { -                "psr-0": { -                    "SensioLabs\\Security": "" -                } -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "Fabien Potencier", -                    "email": "fabien.potencier@gmail.com" -                } -            ], -            "description": "A security checker for your composer.lock", -            "time": "2017-10-29T18:48:08+00:00" -        }, -        { -            "name": "swiftmailer/swiftmailer", -            "version": "v5.4.8", -            "source": { -                "type": "git", -                "url": "https://github.com/swiftmailer/swiftmailer.git", -                "reference": "9a06dc570a0367850280eefd3f1dc2da45aef517" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/9a06dc570a0367850280eefd3f1dc2da45aef517", -                "reference": "9a06dc570a0367850280eefd3f1dc2da45aef517", -                "shasum": "" -            }, -            "require": { -                "php": ">=5.3.3" -            }, -            "require-dev": { -                "mockery/mockery": "~0.9.1", -                "symfony/phpunit-bridge": "~3.2" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "5.4-dev" -                } -            }, -            "autoload": { -                "files": [ -                    "lib/swift_required.php" -                ] -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "Chris Corbyn" -                }, -                { -                    "name": "Fabien Potencier", -                    "email": "fabien@symfony.com" -                } -            ], -            "description": "Swiftmailer, free feature-rich PHP mailer", -            "homepage": "http://swiftmailer.org", -            "keywords": [ -                "email", -                "mail", -                "mailer" -            ], -            "time": "2017-05-01T15:54:03+00:00" -        }, -        { -            "name": "symfony/monolog-bundle", -            "version": "v3.1.2", -            "source": { -                "type": "git", -                "url": "https://github.com/symfony/monolog-bundle.git", -                "reference": "2b41b8b6d2c6edb1a5494f02f8e4129be2a44784" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/2b41b8b6d2c6edb1a5494f02f8e4129be2a44784", -                "reference": "2b41b8b6d2c6edb1a5494f02f8e4129be2a44784", -                "shasum": "" -            }, -            "require": { -                "monolog/monolog": "~1.22", -                "php": ">=5.3.2", -                "symfony/config": "~2.7|~3.0|~4.0", -                "symfony/dependency-injection": "~2.7|~3.0|~4.0", -                "symfony/http-kernel": "~2.7|~3.0|~4.0", -                "symfony/monolog-bridge": "~2.7|~3.0|~4.0" -            }, -            "require-dev": { -                "symfony/console": "~2.3|~3.0|~4.0", -                "symfony/phpunit-bridge": "^3.3|^4.0", -                "symfony/yaml": "~2.3|~3.0|~4.0" -            }, -            "type": "symfony-bundle", -            "extra": { -                "branch-alias": { -                    "dev-master": "3.x-dev" -                } -            }, -            "autoload": { -                "psr-4": { -                    "Symfony\\Bundle\\MonologBundle\\": "" -                }, -                "exclude-from-classmap": [ -                    "/Tests/" -                ] -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "Symfony Community", -                    "homepage": "http://symfony.com/contributors" -                }, -                { -                    "name": "Fabien Potencier", -                    "email": "fabien@symfony.com" -                } -            ], -            "description": "Symfony MonologBundle", -            "homepage": "http://symfony.com", -            "keywords": [ -                "log", -                "logging" -            ], -            "time": "2017-11-06T16:02:17+00:00" -        }, -        { -            "name": "symfony/polyfill-apcu", -            "version": "v1.6.0", -            "source": { -                "type": "git", -                "url": "https://github.com/symfony/polyfill-apcu.git", -                "reference": "04f62674339602def515bff4bc6901fc1d4951e8" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/symfony/polyfill-apcu/zipball/04f62674339602def515bff4bc6901fc1d4951e8", -                "reference": "04f62674339602def515bff4bc6901fc1d4951e8", -                "shasum": "" -            }, -            "require": { -                "php": ">=5.3.3" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "1.6-dev" -                } -            }, -            "autoload": { -                "psr-4": { -                    "Symfony\\Polyfill\\Apcu\\": "" -                }, -                "files": [ -                    "bootstrap.php" -                ] -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "Nicolas Grekas", -                    "email": "p@tchwork.com" -                }, -                { -                    "name": "Symfony Community", -                    "homepage": "https://symfony.com/contributors" -                } -            ], -            "description": "Symfony polyfill backporting apcu_* functions to lower PHP versions", -            "homepage": "https://symfony.com", -            "keywords": [ -                "apcu", -                "compatibility", -                "polyfill", -                "portable", -                "shim" -            ], -            "time": "2017-10-11T12:05:26+00:00" -        }, -        { -            "name": "symfony/polyfill-intl-icu", -            "version": "v1.6.0", -            "source": { -                "type": "git", -                "url": "https://github.com/symfony/polyfill-intl-icu.git", -                "reference": "d2bb2ef00dd8605d6fbd4db53ed4af1395953497" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/d2bb2ef00dd8605d6fbd4db53ed4af1395953497", -                "reference": "d2bb2ef00dd8605d6fbd4db53ed4af1395953497", -                "shasum": "" -            }, -            "require": { -                "php": ">=5.3.3", -                "symfony/intl": "~2.3|~3.0|~4.0" -            }, -            "suggest": { -                "ext-intl": "For best performance" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "1.6-dev" -                } -            }, -            "autoload": { -                "files": [ -                    "bootstrap.php" -                ] -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "Nicolas Grekas", -                    "email": "p@tchwork.com" -                }, -                { -                    "name": "Symfony Community", -                    "homepage": "https://symfony.com/contributors" -                } -            ], -            "description": "Symfony polyfill for intl's ICU-related data and classes", -            "homepage": "https://symfony.com", -            "keywords": [ -                "compatibility", -                "icu", -                "intl", -                "polyfill", -                "portable", -                "shim" -            ], -            "time": "2017-10-11T12:05:26+00:00" -        }, -        { -            "name": "symfony/polyfill-mbstring", -            "version": "v1.6.0", -            "source": { -                "type": "git", -                "url": "https://github.com/symfony/polyfill-mbstring.git", -                "reference": "2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296", -                "reference": "2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296", -                "shasum": "" -            }, -            "require": { -                "php": ">=5.3.3" -            }, -            "suggest": { -                "ext-mbstring": "For best performance" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "1.6-dev" -                } -            }, -            "autoload": { -                "psr-4": { -                    "Symfony\\Polyfill\\Mbstring\\": "" -                }, -                "files": [ -                    "bootstrap.php" -                ] -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "Nicolas Grekas", -                    "email": "p@tchwork.com" -                }, -                { -                    "name": "Symfony Community", -                    "homepage": "https://symfony.com/contributors" -                } -            ], -            "description": "Symfony polyfill for the Mbstring extension", -            "homepage": "https://symfony.com", -            "keywords": [ -                "compatibility", -                "mbstring", -                "polyfill", -                "portable", -                "shim" -            ], -            "time": "2017-10-11T12:05:26+00:00" -        }, -        { -            "name": "symfony/polyfill-php56", -            "version": "v1.6.0", -            "source": { -                "type": "git", -                "url": "https://github.com/symfony/polyfill-php56.git", -                "reference": "265fc96795492430762c29be291a371494ba3a5b" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/265fc96795492430762c29be291a371494ba3a5b", -                "reference": "265fc96795492430762c29be291a371494ba3a5b", -                "shasum": "" -            }, -            "require": { -                "php": ">=5.3.3", -                "symfony/polyfill-util": "~1.0" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "1.6-dev" -                } -            }, -            "autoload": { -                "psr-4": { -                    "Symfony\\Polyfill\\Php56\\": "" -                }, -                "files": [ -                    "bootstrap.php" -                ] -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "Nicolas Grekas", -                    "email": "p@tchwork.com" -                }, -                { -                    "name": "Symfony Community", -                    "homepage": "https://symfony.com/contributors" -                } -            ], -            "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions", -            "homepage": "https://symfony.com", -            "keywords": [ -                "compatibility", -                "polyfill", -                "portable", -                "shim" -            ], -            "time": "2017-10-11T12:05:26+00:00" -        }, -        { -            "name": "symfony/polyfill-php70", -            "version": "v1.6.0", -            "source": { -                "type": "git", -                "url": "https://github.com/symfony/polyfill-php70.git", -                "reference": "0442b9c0596610bd24ae7b5f0a6cdbbc16d9fcff" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/0442b9c0596610bd24ae7b5f0a6cdbbc16d9fcff", -                "reference": "0442b9c0596610bd24ae7b5f0a6cdbbc16d9fcff", -                "shasum": "" -            }, -            "require": { -                "paragonie/random_compat": "~1.0|~2.0", -                "php": ">=5.3.3" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "1.6-dev" -                } -            }, -            "autoload": { -                "psr-4": { -                    "Symfony\\Polyfill\\Php70\\": "" -                }, -                "files": [ -                    "bootstrap.php" -                ], -                "classmap": [ -                    "Resources/stubs" -                ] -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "Nicolas Grekas", -                    "email": "p@tchwork.com" -                }, -                { -                    "name": "Symfony Community", -                    "homepage": "https://symfony.com/contributors" -                } -            ], -            "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions", -            "homepage": "https://symfony.com", -            "keywords": [ -                "compatibility", -                "polyfill", -                "portable", -                "shim" -            ], -            "time": "2017-10-11T12:05:26+00:00" -        }, -        { -            "name": "symfony/polyfill-util", -            "version": "v1.6.0", -            "source": { -                "type": "git", -                "url": "https://github.com/symfony/polyfill-util.git", -                "reference": "6e719200c8e540e0c0effeb31f96bdb344b94176" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/6e719200c8e540e0c0effeb31f96bdb344b94176", -                "reference": "6e719200c8e540e0c0effeb31f96bdb344b94176", -                "shasum": "" -            }, -            "require": { -                "php": ">=5.3.3" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "1.6-dev" -                } -            }, -            "autoload": { -                "psr-4": { -                    "Symfony\\Polyfill\\Util\\": "" -                } -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "Nicolas Grekas", -                    "email": "p@tchwork.com" -                }, -                { -                    "name": "Symfony Community", -                    "homepage": "https://symfony.com/contributors" -                } -            ], -            "description": "Symfony utilities for portability of PHP codes", -            "homepage": "https://symfony.com", -            "keywords": [ -                "compat", -                "compatibility", -                "polyfill", -                "shim" -            ], -            "time": "2017-10-11T12:05:26+00:00" -        }, -        { -            "name": "symfony/swiftmailer-bundle", -            "version": "v2.6.7", -            "source": { -                "type": "git", -                "url": "https://github.com/symfony/swiftmailer-bundle.git", -                "reference": "c4808f5169efc05567be983909d00f00521c53ec" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/symfony/swiftmailer-bundle/zipball/c4808f5169efc05567be983909d00f00521c53ec", -                "reference": "c4808f5169efc05567be983909d00f00521c53ec", -                "shasum": "" -            }, -            "require": { -                "php": ">=5.3.2", -                "swiftmailer/swiftmailer": "~4.2|~5.0", -                "symfony/config": "~2.7|~3.0", -                "symfony/dependency-injection": "~2.7|~3.0", -                "symfony/http-kernel": "~2.7|~3.0" -            }, -            "require-dev": { -                "symfony/console": "~2.7|~3.0", -                "symfony/framework-bundle": "~2.7|~3.0", -                "symfony/phpunit-bridge": "~3.3@dev", -                "symfony/yaml": "~2.7|~3.0" -            }, -            "suggest": { -                "psr/log": "Allows logging" -            }, -            "type": "symfony-bundle", -            "extra": { -                "branch-alias": { -                    "dev-master": "2.6-dev" -                } -            }, -            "autoload": { -                "psr-4": { -                    "Symfony\\Bundle\\SwiftmailerBundle\\": "" -                } -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "Symfony Community", -                    "homepage": "http://symfony.com/contributors" -                }, -                { -                    "name": "Fabien Potencier", -                    "email": "fabien@symfony.com" -                } -            ], -            "description": "Symfony SwiftmailerBundle", -            "homepage": "http://symfony.com", -            "time": "2017-10-19T01:06:41+00:00" -        }, -        { -            "name": "symfony/symfony", -            "version": "v3.3.13", -            "source": { -                "type": "git", -                "url": "https://github.com/symfony/symfony.git", -                "reference": "9b0226340705f75fd0cebd220746a36050ead8a9" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/symfony/symfony/zipball/9b0226340705f75fd0cebd220746a36050ead8a9", -                "reference": "9b0226340705f75fd0cebd220746a36050ead8a9", -                "shasum": "" -            }, -            "require": { -                "doctrine/common": "~2.4", -                "ext-xml": "*", -                "fig/link-util": "^1.0", -                "php": "^5.5.9|>=7.0.8", -                "psr/cache": "~1.0", -                "psr/container": "^1.0", -                "psr/link": "^1.0", -                "psr/log": "~1.0", -                "psr/simple-cache": "^1.0", -                "symfony/polyfill-apcu": "~1.1", -                "symfony/polyfill-intl-icu": "~1.0", -                "symfony/polyfill-mbstring": "~1.0", -                "symfony/polyfill-php56": "~1.0", -                "symfony/polyfill-php70": "~1.0", -                "symfony/polyfill-util": "~1.0", -                "twig/twig": "~1.34|~2.4" -            }, -            "conflict": { -                "phpdocumentor/reflection-docblock": "<3.0||>=3.2.0,<3.2.2", -                "phpdocumentor/type-resolver": "<0.2.1", -                "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0" -            }, -            "provide": { -                "psr/cache-implementation": "1.0", -                "psr/container-implementation": "1.0", -                "psr/simple-cache-implementation": "1.0" -            }, -            "replace": { -                "symfony/asset": "self.version", -                "symfony/browser-kit": "self.version", -                "symfony/cache": "self.version", -                "symfony/class-loader": "self.version", -                "symfony/config": "self.version", -                "symfony/console": "self.version", -                "symfony/css-selector": "self.version", -                "symfony/debug": "self.version", -                "symfony/debug-bundle": "self.version", -                "symfony/dependency-injection": "self.version", -                "symfony/doctrine-bridge": "self.version", -                "symfony/dom-crawler": "self.version", -                "symfony/dotenv": "self.version", -                "symfony/event-dispatcher": "self.version", -                "symfony/expression-language": "self.version", -                "symfony/filesystem": "self.version", -                "symfony/finder": "self.version", -                "symfony/form": "self.version", -                "symfony/framework-bundle": "self.version", -                "symfony/http-foundation": "self.version", -                "symfony/http-kernel": "self.version", -                "symfony/inflector": "self.version", -                "symfony/intl": "self.version", -                "symfony/ldap": "self.version", -                "symfony/monolog-bridge": "self.version", -                "symfony/options-resolver": "self.version", -                "symfony/process": "self.version", -                "symfony/property-access": "self.version", -                "symfony/property-info": "self.version", -                "symfony/proxy-manager-bridge": "self.version", -                "symfony/routing": "self.version", -                "symfony/security": "self.version", -                "symfony/security-bundle": "self.version", -                "symfony/security-core": "self.version", -                "symfony/security-csrf": "self.version", -                "symfony/security-guard": "self.version", -                "symfony/security-http": "self.version", -                "symfony/serializer": "self.version", -                "symfony/stopwatch": "self.version", -                "symfony/templating": "self.version", -                "symfony/translation": "self.version", -                "symfony/twig-bridge": "self.version", -                "symfony/twig-bundle": "self.version", -                "symfony/validator": "self.version", -                "symfony/var-dumper": "self.version", -                "symfony/web-link": "self.version", -                "symfony/web-profiler-bundle": "self.version", -                "symfony/web-server-bundle": "self.version", -                "symfony/workflow": "self.version", -                "symfony/yaml": "self.version" -            }, -            "require-dev": { -                "cache/integration-tests": "dev-master", -                "doctrine/annotations": "~1.0", -                "doctrine/cache": "~1.6", -                "doctrine/data-fixtures": "1.0.*", -                "doctrine/dbal": "~2.4", -                "doctrine/doctrine-bundle": "~1.4", -                "doctrine/orm": "~2.4,>=2.4.5", -                "egulias/email-validator": "~1.2,>=1.2.8|~2.0", -                "monolog/monolog": "~1.11", -                "ocramius/proxy-manager": "~0.4|~1.0|~2.0", -                "phpdocumentor/reflection-docblock": "^3.0|^4.0", -                "predis/predis": "~1.0", -                "sensio/framework-extra-bundle": "^3.0.2", -                "symfony/phpunit-bridge": "~3.2", -                "symfony/security-acl": "~2.8|~3.0" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "3.3-dev" -                } -            }, -            "autoload": { -                "psr-4": { -                    "Symfony\\Bridge\\Doctrine\\": "src/Symfony/Bridge/Doctrine/", -                    "Symfony\\Bridge\\Monolog\\": "src/Symfony/Bridge/Monolog/", -                    "Symfony\\Bridge\\ProxyManager\\": "src/Symfony/Bridge/ProxyManager/", -                    "Symfony\\Bridge\\Twig\\": "src/Symfony/Bridge/Twig/", -                    "Symfony\\Bundle\\": "src/Symfony/Bundle/", -                    "Symfony\\Component\\": "src/Symfony/Component/" -                }, -                "classmap": [ -                    "src/Symfony/Component/Intl/Resources/stubs" -                ], -                "exclude-from-classmap": [ -                    "**/Tests/" -                ] -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "Fabien Potencier", -                    "email": "fabien@symfony.com" -                }, -                { -                    "name": "Symfony Community", -                    "homepage": "https://symfony.com/contributors" -                } -            ], -            "description": "The Symfony PHP framework", -            "homepage": "https://symfony.com", -            "keywords": [ -                "framework" -            ], -            "time": "2017-11-16T18:15:01+00:00" -        }, -        { -            "name": "twig/twig", -            "version": "v2.4.4", -            "source": { -                "type": "git", -                "url": "https://github.com/twigphp/Twig.git", -                "reference": "eddb97148ad779f27e670e1e3f19fb323aedafeb" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/twigphp/Twig/zipball/eddb97148ad779f27e670e1e3f19fb323aedafeb", -                "reference": "eddb97148ad779f27e670e1e3f19fb323aedafeb", -                "shasum": "" -            }, -            "require": { -                "php": "^7.0", -                "symfony/polyfill-mbstring": "~1.0" -            }, -            "require-dev": { -                "psr/container": "^1.0", -                "symfony/debug": "~2.7", -                "symfony/phpunit-bridge": "~3.3@dev" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "2.4-dev" -                } -            }, -            "autoload": { -                "psr-0": { -                    "Twig_": "lib/" -                }, -                "psr-4": { -                    "Twig\\": "src/" -                } -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "BSD-3-Clause" -            ], -            "authors": [ -                { -                    "name": "Fabien Potencier", -                    "email": "fabien@symfony.com", -                    "homepage": "http://fabien.potencier.org", -                    "role": "Lead Developer" -                }, -                { -                    "name": "Armin Ronacher", -                    "email": "armin.ronacher@active-4.com", -                    "role": "Project Founder" -                }, -                { -                    "name": "Twig Team", -                    "homepage": "http://twig.sensiolabs.org/contributors", -                    "role": "Contributors" -                } -            ], -            "description": "Twig, the flexible, fast, and secure template language for PHP", -            "homepage": "http://twig.sensiolabs.org", -            "keywords": [ -                "templating" -            ], -            "time": "2017-09-27T18:10:31+00:00" -        }, -        { -            "name": "webmozart/assert", -            "version": "1.2.0", -            "source": { -                "type": "git", -                "url": "https://github.com/webmozart/assert.git", -                "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/webmozart/assert/zipball/2db61e59ff05fe5126d152bd0655c9ea113e550f", -                "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f", -                "shasum": "" -            }, -            "require": { -                "php": "^5.3.3 || ^7.0" -            }, -            "require-dev": { -                "phpunit/phpunit": "^4.6", -                "sebastian/version": "^1.0.1" -            }, -            "type": "library", -            "extra": { -                "branch-alias": { -                    "dev-master": "1.3-dev" -                } -            }, -            "autoload": { -                "psr-4": { -                    "Webmozart\\Assert\\": "src/" -                } -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "Bernhard Schussek", -                    "email": "bschussek@gmail.com" -                } -            ], -            "description": "Assertions to validate method input/output with nice error messages.", -            "keywords": [ -                "assert", -                "check", -                "validate" -            ], -            "time": "2016-11-23T20:04:58+00:00" -        } -    ], -    "packages-dev": [ -        { -            "name": "sensio/generator-bundle", -            "version": "v3.1.6", -            "source": { -                "type": "git", -                "url": "https://github.com/sensiolabs/SensioGeneratorBundle.git", -                "reference": "128bc5dabc91ca40b7445f094968dd70ccd58305" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/sensiolabs/SensioGeneratorBundle/zipball/128bc5dabc91ca40b7445f094968dd70ccd58305", -                "reference": "128bc5dabc91ca40b7445f094968dd70ccd58305", -                "shasum": "" -            }, -            "require": { -                "symfony/console": "~2.7|~3.0", -                "symfony/framework-bundle": "~2.7|~3.0", -                "symfony/process": "~2.7|~3.0", -                "symfony/yaml": "~2.7|~3.0", -                "twig/twig": "^1.28.2|^2.0" -            }, -            "require-dev": { -                "doctrine/orm": "~2.4", -                "symfony/doctrine-bridge": "~2.7|~3.0", -                "symfony/filesystem": "~2.7|~3.0", -                "symfony/phpunit-bridge": "^3.3" -            }, -            "type": "symfony-bundle", -            "extra": { -                "branch-alias": { -                    "dev-master": "3.1.x-dev" -                } -            }, -            "autoload": { -                "psr-4": { -                    "Sensio\\Bundle\\GeneratorBundle\\": "" -                }, -                "exclude-from-classmap": [ -                    "/Tests/" -                ] -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "Fabien Potencier", -                    "email": "fabien@symfony.com" -                } -            ], -            "description": "This bundle generates code for you", -            "time": "2017-07-18T07:57:44+00:00" -        }, -        { -            "name": "symfony/phpunit-bridge", -            "version": "v3.4.0", -            "source": { -                "type": "git", -                "url": "https://github.com/symfony/phpunit-bridge.git", -                "reference": "292c1a79c5c32360c62bbe67022a38c6535094d5" -            }, -            "dist": { -                "type": "zip", -                "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/292c1a79c5c32360c62bbe67022a38c6535094d5", -                "reference": "292c1a79c5c32360c62bbe67022a38c6535094d5", -                "shasum": "" -            }, -            "require": { -                "php": ">=5.3.3" -            }, -            "conflict": { -                "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0" -            }, -            "suggest": { -                "ext-zip": "Zip support is required when using bin/simple-phpunit", -                "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader" -            }, -            "bin": [ -                "bin/simple-phpunit" -            ], -            "type": "symfony-bridge", -            "extra": { -                "branch-alias": { -                    "dev-master": "3.4-dev" -                } -            }, -            "autoload": { -                "files": [ -                    "bootstrap.php" -                ], -                "psr-4": { -                    "Symfony\\Bridge\\PhpUnit\\": "" -                }, -                "exclude-from-classmap": [ -                    "/Tests/" -                ] -            }, -            "notification-url": "https://packagist.org/downloads/", -            "license": [ -                "MIT" -            ], -            "authors": [ -                { -                    "name": "Nicolas Grekas", -                    "email": "p@tchwork.com" -                }, -                { -                    "name": "Symfony Community", -                    "homepage": "https://symfony.com/contributors" -                } -            ], -            "description": "Symfony PHPUnit Bridge", -            "homepage": "https://symfony.com", -            "time": "2017-11-22T11:41:29+00:00" -        } -    ], -    "aliases": [], -    "minimum-stability": "stable", -    "stability-flags": [], -    "prefer-stable": false, -    "prefer-lowest": false, -    "platform": { -        "php": ">=7.0" -    }, -    "platform-dev": [] -} diff --git a/phpunit.xml.dist b/phpunit.xml.dist deleted file mode 100644 index 5a12e67..0000000 --- a/phpunit.xml.dist +++ /dev/null @@ -1,31 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> - -<!-- https://phpunit.de/manual/current/en/appendixes.configuration.html --> -<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" -         xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.8/phpunit.xsd" -         backupGlobals="false" -         colors="true" -         bootstrap="vendor/autoload.php" -> -    <php> -        <ini name="error_reporting" value="-1" /> -        <server name="KERNEL_CLASS" value="AppKernel" /> -    </php> - -    <testsuites> -        <testsuite name="Project Test Suite"> -            <directory>tests</directory> -        </testsuite> -    </testsuites> - -    <filter> -        <whitelist> -            <directory>src</directory> -            <exclude> -                <directory>src/*Bundle/Resources</directory> -                <directory>src/*/*Bundle/Resources</directory> -                <directory>src/*/Bundle/*Bundle/Resources</directory> -            </exclude> -        </whitelist> -    </filter> -</phpunit> diff --git a/rebuild.sh b/rebuild.sh deleted file mode 100644 index ff476dc..0000000 --- a/rebuild.sh +++ /dev/null @@ -1,2 +0,0 @@ -curl -sS https://getcomposer.org/installer | php -php composer.phar install diff --git a/src/.htaccess b/src/.htaccess deleted file mode 100644 index fb1de45..0000000 --- a/src/.htaccess +++ /dev/null @@ -1,7 +0,0 @@ -<IfModule mod_authz_core.c> -    Require all denied -</IfModule> -<IfModule !mod_authz_core.c> -    Order deny,allow -    Deny from all -</IfModule> diff --git a/src/AppBundle/AppBundle.php b/src/AppBundle/AppBundle.php deleted file mode 100644 index 05123b6..0000000 --- a/src/AppBundle/AppBundle.php +++ /dev/null @@ -1,9 +0,0 @@ -<?php - -namespace AppBundle; - -use Symfony\Component\HttpKernel\Bundle\Bundle; - -class AppBundle extends Bundle -{ -} diff --git a/src/AppBundle/Controller/AllDataAverageController.php b/src/AppBundle/Controller/AllDataAverageController.php deleted file mode 100644 index 4434d47..0000000 --- a/src/AppBundle/Controller/AllDataAverageController.php +++ /dev/null @@ -1,66 +0,0 @@ -<?php -namespace AppBundle\Controller; - -use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; -use Symfony\Component\HttpFoundation\Response; -use Symfony\Bundle\FrameworkBundle\Controller\Controller; - - -class AllDataAverageController extends Controller -{ -    /** -     * @Route("/AllDataAverage", name="AllDataAverage") -     */ - -    public function GetAllDataAverage() -    { -        // Get cURL resource -        $curl = curl_init(); -        curl_setopt($curl, CURLOPT_URL, "https://pollutometerapi.azurewebsites.net/api/Readings"); -        curl_setopt($curl, CURLOPT_HTTPHEADER, array('Content-type: application/json')); // Assuming you're requesting JSON -        curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); -        // Send the request & save response to $resp -        $resp = curl_exec($curl); -        // Close request to clear up some resources -        curl_close($curl); - -        $data = json_decode($resp, true); -        $readings = array(); -        $results = array(); - -        usort($data, function($a,$b){ -            return $a['TimeStamp'] - $b['TimeStamp']; -        }); - -        foreach($data as $index => $item) -        { -            $data[$index]['TimeStamp'] = gmdate('d F l', $item['TimeStamp']); -            $readings[$data[$index]['TimeStamp']][] = $data[$index]; -        } - -        foreach ($readings as $key => $item) -        { -            $gasAverage = array('Co' => 0, 'No' => 0, 'So' => 0); -            foreach ($readings[$key] as $index => $values) -            { -                $gasAverage['Co'] += $readings[$key][$index]['Co']; -                $gasAverage['No'] += $readings[$key][$index]['No']; -                $gasAverage['So'] += $readings[$key][$index]['So']; - -                if($index === count($readings[$key]) - 1) -                { -                    $gasAverage['Co'] /= $index + 1; -                    $gasAverage['No'] /= $index + 1; -                    $gasAverage['So'] /= $index + 1; -                } -                $results[$key] = $gasAverage; -            } -        } - -        $data = json_encode($results); - -        $response = new Response($data); -        $response->headers->set('Content-Type', 'application/json'); -        return $response; -    } -}
\ No newline at end of file diff --git a/src/AppBundle/Controller/AllDataController.php b/src/AppBundle/Controller/AllDataController.php deleted file mode 100644 index b45d2c9..0000000 --- a/src/AppBundle/Controller/AllDataController.php +++ /dev/null @@ -1,43 +0,0 @@ -<?php -namespace AppBundle\Controller; - -use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; -use Symfony\Bundle\FrameworkBundle\Controller\Controller; - - -class AllDataController extends Controller -{ -    /** -     * @Route("/AllData", name="AllData") -     */ - -    public function GetAllData() -    { -        // Get cURL resource -        $curl = curl_init(); -        curl_setopt($curl, CURLOPT_URL, "https://pollutometerapi.azurewebsites.net/api/Readings"); -        curl_setopt($curl, CURLOPT_HTTPHEADER, array('Content-type: application/json')); // Assuming you're requesting JSON -        curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); -        // Send the request & save response to $resp -        $resp = curl_exec($curl); -        // Close request to clear up some resources -        curl_close($curl); - -        $data = json_decode($resp, true); - - -        usort($data, function($a,$b){ -            return $a['TimeStamp'] - $b['TimeStamp']; -        }); - -        foreach($data as $index => $item) -        { -            $data[$index]['TimeStamp'] = gmdate("l jS \of F Y h:i:s A", $item['TimeStamp']); -        } - -        $parametersToTwig = array("data" => $data); - -        return $this->render('default/AllData.html.twig',$parametersToTwig); - -    } -}
\ No newline at end of file diff --git a/src/AppBundle/Controller/HomeController.php b/src/AppBundle/Controller/HomeController.php deleted file mode 100644 index d84ab76..0000000 --- a/src/AppBundle/Controller/HomeController.php +++ /dev/null @@ -1,60 +0,0 @@ -<?php -/** - * Created by PhpStorm. - * User: andy - * Date: 11/23/17 - * Time: 10:21 AM - */ - -namespace AppBundle\Controller; - -use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; -use Symfony\Bundle\FrameworkBundle\Controller\Controller; -use AppBundle\Utils\Aqi; - -class HomeController extends Controller -{ -    /** -     * @Route("/", name="homepage") -     */ - - -    public function numberAction(Aqi $aqi) -    { -        $table = array( -            'Co' => array('breakpoints' => [0, 4.4, 4.5, 9.4, 9.5, 12.4, 12.5, 15.4, 15.5, 30.4, 30.5, 40.4, 40.5, 50.4], -                'aq' => [0, 50, 51, 100, 101, 150, 151, 200, 201, 300, 301, 400, 401, 500]), -            'So' => array('breakpoints' => [0.000, 0.034, 0.035, 0.144, 0.145, 0.224, 0.225, 0.304, 0.305, 0.604, 0.605, 0.804, 0.805, 1.004], -                'aq' => [0, 50, 51, 100, 101, 150, 151, 200, 201, 300, 301, 400, 401, 500]), -            'No' => array('breakpoints' => [0,0.05,0.08,0.10,0.15,0.20,0.25 ,0.31,0.65, 1.24, 1.25, 1.64, 1.65, 2.04], -                'aq' => [0 ,50 ,51 ,100 ,101 ,150 ,151,200,201, 300, 301, 400, 401, 500]) -        ); - - -        $tableObj = json_decode(json_encode($table)); - -        // Get cURL resource -        $curl = curl_init(); -        curl_setopt($curl, CURLOPT_URL, "https://pollutometerapi.azurewebsites.net/api/Readings/latest"); -        curl_setopt($curl, CURLOPT_HTTPHEADER, array('Content-type: application/json')); // Assuming you're requesting JSON -        curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); -        // Send the request & save response to $resp -        $resp = curl_exec($curl); -        // Close request to clear up some resources -        curl_close($curl); - -        $data = json_decode($resp, true); -        $data['TimeStamp'] = gmdate("l jS \of F Y h:i:s A", $data['TimeStamp']); - -        $arr = []; -        $CO = is_nan($aqi->calculateAQI("Co", $data['Co'], $tableObj)) ? 0 : $aqi->calculateAQI("Co", $data['Co'], $tableObj); -        $SO = is_nan($aqi->calculateAQI("So", $data['So'], $tableObj)) ? 0 : $aqi->calculateAQI("So", $data['So'], $tableObj); -        $NO = is_nan($aqi->calculateAQI("No", $data['No'], $tableObj)) ? 0 : $aqi->calculateAQI("No", $data['No'], $tableObj); - -        array_push($arr, $CO, $SO, $NO); -        $max = max($arr); -        $data['Aqi'] = $max; - -        return $this->render('default/index.html.twig', $data); -    } -} diff --git a/src/AppBundle/Controller/LastWeekDataAverageController.php b/src/AppBundle/Controller/LastWeekDataAverageController.php deleted file mode 100644 index e25b0a8..0000000 --- a/src/AppBundle/Controller/LastWeekDataAverageController.php +++ /dev/null @@ -1,66 +0,0 @@ -<?php -namespace AppBundle\Controller; - -use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; -use Symfony\Component\HttpFoundation\Response; -use Symfony\Bundle\FrameworkBundle\Controller\Controller; - - -class LastWeekDataAverageController extends Controller -{ -    /** -     * @Route("/LastWeekDataAverage", name="LastWeekDataAverage") -     */ - -    public function GetLastWeekAverageData() -    { -        // Get cURL resource -        $curl = curl_init(); -        curl_setopt($curl, CURLOPT_URL, "https://pollutometerapi.azurewebsites.net/api/Readings/lastweek"); -        curl_setopt($curl, CURLOPT_HTTPHEADER, array('Content-type: application/json')); // Assuming you're requesting JSON -        curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); -        // Send the request & save response to $resp -        $resp = curl_exec($curl); -        // Close request to clear up some resources -        curl_close($curl); - -        $data = json_decode($resp, true); -        $readings = array(); -        $results = array(); - -        usort($data, function($a,$b){ -            return $a['TimeStamp'] - $b['TimeStamp']; -        }); - -        foreach($data as $index => $item) -        { -            $data[$index]['TimeStamp'] = gmdate('d F l', $item['TimeStamp']); -            $readings[$data[$index]['TimeStamp']][] = $data[$index]; -        } - -        foreach ($readings as $key => $item) -        { -            $gasAverage = array('Co' => 0, 'No' => 0, 'So' => 0); -            foreach ($readings[$key] as $index => $values) -            { -                $gasAverage['Co'] += $readings[$key][$index]['Co']; -                $gasAverage['No'] += $readings[$key][$index]['No']; -                $gasAverage['So'] += $readings[$key][$index]['So']; - -                if($index === count($readings[$key]) - 1) -                { -                    $gasAverage['Co'] /= $index + 1; -                    $gasAverage['No'] /= $index + 1; -                    $gasAverage['So'] /= $index + 1; -                } -                $results[$key] = $gasAverage; -            } -        } - -        $data = json_encode($results); - -        $response = new Response($data); -        $response->headers->set('Content-Type', 'application/json'); -        return $response; -    } -}
\ No newline at end of file diff --git a/src/AppBundle/Controller/LastWeekDataController.php b/src/AppBundle/Controller/LastWeekDataController.php deleted file mode 100644 index 7b5d993..0000000 --- a/src/AppBundle/Controller/LastWeekDataController.php +++ /dev/null @@ -1,42 +0,0 @@ -<?php -namespace AppBundle\Controller; - -use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; -use Symfony\Bundle\FrameworkBundle\Controller\Controller; - - -class LastWeekDataController extends Controller -{ -    /** -     * @Route("/LastWeekData", name="LastWeekData") -     */ - -    public function GetAllData() -    { -        // Get cURL resource -        $curl = curl_init(); -        curl_setopt($curl, CURLOPT_URL, "https://pollutometerapi.azurewebsites.net/api/Readings/lastweek"); -        curl_setopt($curl, CURLOPT_HTTPHEADER, array('Content-type: application/json')); // Assuming you're requesting JSON -        curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); -        // Send the request & save response to $resp -        $resp = curl_exec($curl); -        // Close request to clear up some resources -        curl_close($curl); - -        $data = json_decode($resp, true); - - -        usort($data, function($a,$b){ -            return $a['TimeStamp'] - $b['TimeStamp']; -        }); - -        foreach($data as $index => $item) -        { -            $data[$index]['TimeStamp'] = gmdate("l jS \of F Y h:i:s A", $item['TimeStamp']); -        } - -        $parametersToTwig = array("data" => $data); - -        return $this->render('default/LastWeekData.html.twig',$parametersToTwig); -    } -}
\ No newline at end of file diff --git a/src/AppBundle/Controller/NewDataController.php b/src/AppBundle/Controller/NewDataController.php deleted file mode 100644 index 5dd440f..0000000 --- a/src/AppBundle/Controller/NewDataController.php +++ /dev/null @@ -1,42 +0,0 @@ -<?php -/** - * Created by PhpStorm. - * User: andy - * Date: 11/23/17 - * Time: 10:21 AM - */ - -namespace AppBundle\Controller; - -use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; -use Symfony\Component\HttpFoundation\Response; -use Symfony\Bundle\FrameworkBundle\Controller\Controller; - -class NewDataController extends Controller -{ -    /** -     * @Route("/latest") -     */ - -    public function getLatestData() -    { -        // Get cURL resource -        $curl = curl_init(); -        curl_setopt($curl, CURLOPT_URL, "https://pollutometerapi.azurewebsites.net/api/Readings/latest"); -        curl_setopt($curl, CURLOPT_HTTPHEADER, array('Content-type: application/json')); // Assuming you're requesting JSON -        curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); -        // Send the request & save response to $resp -        $resp = curl_exec($curl); -        // Close request to clear up some resources -        curl_close($curl); - -        $data = json_decode($resp, true); -        $data['TimeStamp'] = gmdate("l jS \of F Y h:i:s A", $data['TimeStamp']); -        $data = json_encode($data); - -        $response = new Response($data); -        $response->headers->set('Content-Type', 'application/json'); -        return $response; -    } - -} diff --git a/src/AppBundle/Controller/TrainScheduleController.php b/src/AppBundle/Controller/TrainScheduleController.php deleted file mode 100644 index a6b517d..0000000 --- a/src/AppBundle/Controller/TrainScheduleController.php +++ /dev/null @@ -1,110 +0,0 @@ -<?php -/** - * Created by PhpStorm. - * User: marcin - * Date: 07/12/17 - * Time: 10:33 - */ - -namespace AppBundle\Controller; - -use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; -use Symfony\Bundle\FrameworkBundle\Controller\Controller; -use AppBundle\Utils\Aqi; - -class TrainScheduleController extends Controller -{ -    /** -     * @Route("/TrainSchedule") -     */ - -    public function GetSchedule() -    { -        $url = "http://xmlopen.rejseplanen.dk/bin/rest.exe/multiDepartureBoard?id1=008600617&date=" . -            date("d.m.Y") . -            "&time=00%3A00&useBus=0&format=json"; - -        // Get cURL resource -        $curl = curl_init(); -        curl_setopt($curl, CURLOPT_URL, $url); -        curl_setopt($curl, CURLOPT_HTTPHEADER, array('Content-type: application/json')); // Assuming you're requesting JSON -        curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); -        // Send the request & save response to $resp -        $resp = curl_exec($curl); -        // Close request to clear up some resources -        curl_close($curl); - -        $trains = json_decode($resp, true); -        $trains = $trains['MultiDepartureBoard']['Departure']; - -        // Get cURL resource -        $curl = curl_init(); -        curl_setopt($curl, CURLOPT_URL, "https://pollutometerapi.azurewebsites.net/api/Readings/lastweek"); -        curl_setopt($curl, CURLOPT_HTTPHEADER, array('Content-type: application/json')); // Assuming you're requesting JSON -        curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); -        // Send the request & save response to $resp -        $resp = curl_exec($curl); -        // Close request to clear up some resources -        curl_close($curl); - -        $readings = json_decode($resp, true); - - -        for ($i = 0; $i < count($trains); $i++) { -            $closest = 5301590400; -            $time = $trains[$i]['time']; -            $date = $trains[$i]['date']; -            $datesplit = explode(".", $date); -            $datetime = $datesplit[0] . "." . $datesplit[1] . ".20" . $datesplit[2] . " " . $time; -            $trainTimeStamp = strtotime($datetime) + 3600; - -            if($trainTimeStamp > time()) -            { -                $trains[$i]['direction'] = 0; -                continue; -            } - -            foreach ($readings as $reading) { -                if (abs($reading['TimeStamp'] - $trainTimeStamp) < abs($closest - $trainTimeStamp)) -                    $closest = $reading['TimeStamp']; -            } - -            $closestReading = $readings[0]; -            foreach ($readings as $reading) -            { -                if($reading['TimeStamp'] == $closest) $closestReading = $reading; -            } -            $trains[$i]['direction'] = $this->getAqi($closestReading); -        } - -            $parametersToTwig = array("data" => $trains); - -            return $this->render('default/TrainSchedule.html.twig', $parametersToTwig); -        } - -    private function getAqi(array $data) -    { -        $aqi = new Aqi(); - -        $table = array( -            'Co' => array('breakpoints' => [0, 4.4, 4.5, 9.4, 9.5, 12.4, 12.5, 15.4, 15.5, 30.4, 30.5, 40.4, 40.5, 50.4], -                'aq' => [0, 50, 51, 100, 101, 150, 151, 200, 201, 300, 301, 400, 401, 500]), -            'So' => array('breakpoints' => [0.000, 0.034, 0.035, 0.144, 0.145, 0.224, 0.225, 0.304, 0.305, 0.604, 0.605, 0.804, 0.805, 1.004], -                'aq' => [0, 50, 51, 100, 101, 150, 151, 200, 201, 300, 301, 400, 401, 500]), -            'No' => array('breakpoints' => [0,0.05,0.08,0.10,0.15,0.20,0.25 ,0.31,0.65, 1.24, 1.25, 1.64, 1.65, 2.04], -                'aq' => [0 ,50 ,51 ,100 ,101 ,150 ,151,200,201, 300, 301, 400, 401, 500]) -        ); - -        $tableObj = json_decode(json_encode($table)); - -        $arr = []; -        $CO = is_nan($aqi->calculateAQI("Co", $data['Co'], $tableObj)) ? 0 : $aqi->calculateAQI("Co", $data['Co'], $tableObj); -        $SO = is_nan($aqi->calculateAQI("So", $data['So'], $tableObj)) ? 0 : $aqi->calculateAQI("So", $data['So'], $tableObj); -        $NO = is_nan($aqi->calculateAQI("No", $data['No'], $tableObj)) ? 0 : $aqi->calculateAQI("No", $data['No'], $tableObj); - -        array_push($arr, $CO, $SO, $NO); -        $max = max($arr); - -        return $max; -    } -}
\ No newline at end of file diff --git a/src/AppBundle/Utils/Aqi.php b/src/AppBundle/Utils/Aqi.php deleted file mode 100644 index 1b324a8..0000000 --- a/src/AppBundle/Utils/Aqi.php +++ /dev/null @@ -1,43 +0,0 @@ -<?php -/** - * Created by PhpStorm. - * User: andy - * Date: 11/30/17 - * Time: 11:27 AM - * - * - */ - -Namespace AppBundle\Utils; - -class Aqi { -    public function calculateAQI($gasName, $concentration, $table) { -        $bpLow = 1; -        $bpHi = 2; -        $bpLowIndex = 1; -        $bpHiIndex = 1; - -        $arr = $table ->{$gasName} ->{'breakpoints'}; -        foreach ($arr as $index => $value) { -            if ($value <= $concentration && $table->{$gasName}->{'breakpoints'}[$index + 1] >= $concentration) { -                $bpLow = $value; -                $bpLowIndex = $index; -            } - -            if ($value >= $concentration && $table->{$gasName}->{'breakpoints'}[$index - 1] <= $concentration) { -                $bpHi = $value; -                $bpHiIndex = $index; -            } - -        }; - - - -        $airQualityIndex = (($table->{$gasName}->{'aq'}[$bpHiIndex] - $table->{$gasName}->{'aq'}[$bpLowIndex]) / ($bpHi - $bpLow)) * ($concentration - $bpLow) + $table->{$gasName}->{'aq'}[$bpLowIndex]; - -        return $airQualityIndex; - -    } -} - -?>
\ No newline at end of file diff --git a/tests/AppBundle/Controller/DefaultControllerTest.php b/tests/AppBundle/Controller/DefaultControllerTest.php deleted file mode 100644 index 594803c..0000000 --- a/tests/AppBundle/Controller/DefaultControllerTest.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Tests\AppBundle\Controller; - -use Symfony\Bundle\FrameworkBundle\Test\WebTestCase; - -class DefaultControllerTest extends WebTestCase -{ -    public function testIndex() -    { -        $client = static::createClient(); - -        $crawler = $client->request('GET', '/'); - -        $this->assertEquals(200, $client->getResponse()->getStatusCode()); -        $this->assertContains('Welcome to Symfony', $crawler->filter('#container h1')->text()); -    } -} diff --git a/var/SymfonyRequirements.php b/var/SymfonyRequirements.php deleted file mode 100644 index 3b14a40..0000000 --- a/var/SymfonyRequirements.php +++ /dev/null @@ -1,817 +0,0 @@ -<?php - -/* - * This file is part of the Symfony package. - * - * (c) Fabien Potencier <fabien@symfony.com> - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -/* - * Users of PHP 5.2 should be able to run the requirements checks. - * This is why the file and all classes must be compatible with PHP 5.2+ - * (e.g. not using namespaces and closures). - * - * ************** CAUTION ************** - * - * DO NOT EDIT THIS FILE as it will be overridden by Composer as part of - * the installation/update process. The original file resides in the - * SensioDistributionBundle. - * - * ************** CAUTION ************** - */ - -/** - * Represents a single PHP requirement, e.g. an installed extension. - * It can be a mandatory requirement or an optional recommendation. - * There is a special subclass, named PhpIniRequirement, to check a php.ini configuration. - * - * @author Tobias Schultze <http://tobion.de> - */ -class Requirement -{ -    private $fulfilled; -    private $testMessage; -    private $helpText; -    private $helpHtml; -    private $optional; - -    /** -     * Constructor that initializes the requirement. -     * -     * @param bool        $fulfilled   Whether the requirement is fulfilled -     * @param string      $testMessage The message for testing the requirement -     * @param string      $helpHtml    The help text formatted in HTML for resolving the problem -     * @param string|null $helpText    The help text (when null, it will be inferred from $helpHtml, i.e. stripped from HTML tags) -     * @param bool        $optional    Whether this is only an optional recommendation not a mandatory requirement -     */ -    public function __construct($fulfilled, $testMessage, $helpHtml, $helpText = null, $optional = false) -    { -        $this->fulfilled = (bool) $fulfilled; -        $this->testMessage = (string) $testMessage; -        $this->helpHtml = (string) $helpHtml; -        $this->helpText = null === $helpText ? strip_tags($this->helpHtml) : (string) $helpText; -        $this->optional = (bool) $optional; -    } - -    /** -     * Returns whether the requirement is fulfilled. -     * -     * @return bool true if fulfilled, otherwise false -     */ -    public function isFulfilled() -    { -        return $this->fulfilled; -    } - -    /** -     * Returns the message for testing the requirement. -     * -     * @return string The test message -     */ -    public function getTestMessage() -    { -        return $this->testMessage; -    } - -    /** -     * Returns the help text for resolving the problem. -     * -     * @return string The help text -     */ -    public function getHelpText() -    { -        return $this->helpText; -    } - -    /** -     * Returns the help text formatted in HTML. -     * -     * @return string The HTML help -     */ -    public function getHelpHtml() -    { -        return $this->helpHtml; -    } - -    /** -     * Returns whether this is only an optional recommendation and not a mandatory requirement. -     * -     * @return bool true if optional, false if mandatory -     */ -    public function isOptional() -    { -        return $this->optional; -    } -} - -/** - * Represents a PHP requirement in form of a php.ini configuration. - * - * @author Tobias Schultze <http://tobion.de> - */ -class PhpIniRequirement extends Requirement -{ -    /** -     * Constructor that initializes the requirement. -     * -     * @param string        $cfgName           The configuration name used for ini_get() -     * @param bool|callback $evaluation        Either a boolean indicating whether the configuration should evaluate to true or false, -     *                                         or a callback function receiving the configuration value as parameter to determine the fulfillment of the requirement -     * @param bool          $approveCfgAbsence If true the Requirement will be fulfilled even if the configuration option does not exist, i.e. ini_get() returns false. -     *                                         This is helpful for abandoned configs in later PHP versions or configs of an optional extension, like Suhosin. -     *                                         Example: You require a config to be true but PHP later removes this config and defaults it to true internally. -     * @param string|null   $testMessage       The message for testing the requirement (when null and $evaluation is a boolean a default message is derived) -     * @param string|null   $helpHtml          The help text formatted in HTML for resolving the problem (when null and $evaluation is a boolean a default help is derived) -     * @param string|null   $helpText          The help text (when null, it will be inferred from $helpHtml, i.e. stripped from HTML tags) -     * @param bool          $optional          Whether this is only an optional recommendation not a mandatory requirement -     */ -    public function __construct($cfgName, $evaluation, $approveCfgAbsence = false, $testMessage = null, $helpHtml = null, $helpText = null, $optional = false) -    { -        $cfgValue = ini_get($cfgName); - -        if (is_callable($evaluation)) { -            if (null === $testMessage || null === $helpHtml) { -                throw new InvalidArgumentException('You must provide the parameters testMessage and helpHtml for a callback evaluation.'); -            } - -            $fulfilled = call_user_func($evaluation, $cfgValue); -        } else { -            if (null === $testMessage) { -                $testMessage = sprintf('%s %s be %s in php.ini', -                    $cfgName, -                    $optional ? 'should' : 'must', -                    $evaluation ? 'enabled' : 'disabled' -                ); -            } - -            if (null === $helpHtml) { -                $helpHtml = sprintf('Set <strong>%s</strong> to <strong>%s</strong> in php.ini<a href="#phpini">*</a>.', -                    $cfgName, -                    $evaluation ? 'on' : 'off' -                ); -            } - -            $fulfilled = $evaluation == $cfgValue; -        } - -        parent::__construct($fulfilled || ($approveCfgAbsence && false === $cfgValue), $testMessage, $helpHtml, $helpText, $optional); -    } -} - -/** - * A RequirementCollection represents a set of Requirement instances. - * - * @author Tobias Schultze <http://tobion.de> - */ -class RequirementCollection implements IteratorAggregate -{ -    /** -     * @var Requirement[] -     */ -    private $requirements = array(); - -    /** -     * Gets the current RequirementCollection as an Iterator. -     * -     * @return Traversable A Traversable interface -     */ -    public function getIterator() -    { -        return new ArrayIterator($this->requirements); -    } - -    /** -     * Adds a Requirement. -     * -     * @param Requirement $requirement A Requirement instance -     */ -    public function add(Requirement $requirement) -    { -        $this->requirements[] = $requirement; -    } - -    /** -     * Adds a mandatory requirement. -     * -     * @param bool        $fulfilled   Whether the requirement is fulfilled -     * @param string      $testMessage The message for testing the requirement -     * @param string      $helpHtml    The help text formatted in HTML for resolving the problem -     * @param string|null $helpText    The help text (when null, it will be inferred from $helpHtml, i.e. stripped from HTML tags) -     */ -    public function addRequirement($fulfilled, $testMessage, $helpHtml, $helpText = null) -    { -        $this->add(new Requirement($fulfilled, $testMessage, $helpHtml, $helpText, false)); -    } - -    /** -     * Adds an optional recommendation. -     * -     * @param bool        $fulfilled   Whether the recommendation is fulfilled -     * @param string      $testMessage The message for testing the recommendation -     * @param string      $helpHtml    The help text formatted in HTML for resolving the problem -     * @param string|null $helpText    The help text (when null, it will be inferred from $helpHtml, i.e. stripped from HTML tags) -     */ -    public function addRecommendation($fulfilled, $testMessage, $helpHtml, $helpText = null) -    { -        $this->add(new Requirement($fulfilled, $testMessage, $helpHtml, $helpText, true)); -    } - -    /** -     * Adds a mandatory requirement in form of a php.ini configuration. -     * -     * @param string        $cfgName           The configuration name used for ini_get() -     * @param bool|callback $evaluation        Either a boolean indicating whether the configuration should evaluate to true or false, -     *                                         or a callback function receiving the configuration value as parameter to determine the fulfillment of the requirement -     * @param bool          $approveCfgAbsence If true the Requirement will be fulfilled even if the configuration option does not exist, i.e. ini_get() returns false. -     *                                         This is helpful for abandoned configs in later PHP versions or configs of an optional extension, like Suhosin. -     *                                         Example: You require a config to be true but PHP later removes this config and defaults it to true internally. -     * @param string        $testMessage       The message for testing the requirement (when null and $evaluation is a boolean a default message is derived) -     * @param string        $helpHtml          The help text formatted in HTML for resolving the problem (when null and $evaluation is a boolean a default help is derived) -     * @param string|null   $helpText          The help text (when null, it will be inferred from $helpHtml, i.e. stripped from HTML tags) -     */ -    public function addPhpIniRequirement($cfgName, $evaluation, $approveCfgAbsence = false, $testMessage = null, $helpHtml = null, $helpText = null) -    { -        $this->add(new PhpIniRequirement($cfgName, $evaluation, $approveCfgAbsence, $testMessage, $helpHtml, $helpText, false)); -    } - -    /** -     * Adds an optional recommendation in form of a php.ini configuration. -     * -     * @param string        $cfgName           The configuration name used for ini_get() -     * @param bool|callback $evaluation        Either a boolean indicating whether the configuration should evaluate to true or false, -     *                                         or a callback function receiving the configuration value as parameter to determine the fulfillment of the requirement -     * @param bool          $approveCfgAbsence If true the Requirement will be fulfilled even if the configuration option does not exist, i.e. ini_get() returns false. -     *                                         This is helpful for abandoned configs in later PHP versions or configs of an optional extension, like Suhosin. -     *                                         Example: You require a config to be true but PHP later removes this config and defaults it to true internally. -     * @param string        $testMessage       The message for testing the requirement (when null and $evaluation is a boolean a default message is derived) -     * @param string        $helpHtml          The help text formatted in HTML for resolving the problem (when null and $evaluation is a boolean a default help is derived) -     * @param string|null   $helpText          The help text (when null, it will be inferred from $helpHtml, i.e. stripped from HTML tags) -     */ -    public function addPhpIniRecommendation($cfgName, $evaluation, $approveCfgAbsence = false, $testMessage = null, $helpHtml = null, $helpText = null) -    { -        $this->add(new PhpIniRequirement($cfgName, $evaluation, $approveCfgAbsence, $testMessage, $helpHtml, $helpText, true)); -    } - -    /** -     * Adds a requirement collection to the current set of requirements. -     * -     * @param RequirementCollection $collection A RequirementCollection instance -     */ -    public function addCollection(RequirementCollection $collection) -    { -        $this->requirements = array_merge($this->requirements, $collection->all()); -    } - -    /** -     * Returns both requirements and recommendations. -     * -     * @return Requirement[] -     */ -    public function all() -    { -        return $this->requirements; -    } - -    /** -     * Returns all mandatory requirements. -     * -     * @return Requirement[] -     */ -    public function getRequirements() -    { -        $array = array(); -        foreach ($this->requirements as $req) { -            if (!$req->isOptional()) { -                $array[] = $req; -            } -        } - -        return $array; -    } - -    /** -     * Returns the mandatory requirements that were not met. -     * -     * @return Requirement[] -     */ -    public function getFailedRequirements() -    { -        $array = array(); -        foreach ($this->requirements as $req) { -            if (!$req->isFulfilled() && !$req->isOptional()) { -                $array[] = $req; -            } -        } - -        return $array; -    } - -    /** -     * Returns all optional recommendations. -     * -     * @return Requirement[] -     */ -    public function getRecommendations() -    { -        $array = array(); -        foreach ($this->requirements as $req) { -            if ($req->isOptional()) { -                $array[] = $req; -            } -        } - -        return $array; -    } - -    /** -     * Returns the recommendations that were not met. -     * -     * @return Requirement[] -     */ -    public function getFailedRecommendations() -    { -        $array = array(); -        foreach ($this->requirements as $req) { -            if (!$req->isFulfilled() && $req->isOptional()) { -                $array[] = $req; -            } -        } - -        return $array; -    } - -    /** -     * Returns whether a php.ini configuration is not correct. -     * -     * @return bool php.ini configuration problem? -     */ -    public function hasPhpIniConfigIssue() -    { -        foreach ($this->requirements as $req) { -            if (!$req->isFulfilled() && $req instanceof PhpIniRequirement) { -                return true; -            } -        } - -        return false; -    } - -    /** -     * Returns the PHP configuration file (php.ini) path. -     * -     * @return string|false php.ini file path -     */ -    public function getPhpIniConfigPath() -    { -        return get_cfg_var('cfg_file_path'); -    } -} - -/** - * This class specifies all requirements and optional recommendations that - * are necessary to run the Symfony Standard Edition. - * - * @author Tobias Schultze <http://tobion.de> - * @author Fabien Potencier <fabien@symfony.com> - */ -class SymfonyRequirements extends RequirementCollection -{ -    const LEGACY_REQUIRED_PHP_VERSION = '5.3.3'; -    const REQUIRED_PHP_VERSION = '5.5.9'; - -    /** -     * Constructor that initializes the requirements. -     */ -    public function __construct() -    { -        /* mandatory requirements follow */ - -        $installedPhpVersion = phpversion(); -        $requiredPhpVersion = $this->getPhpRequiredVersion(); - -        $this->addRecommendation( -            $requiredPhpVersion, -            'Vendors should be installed in order to check all requirements.', -            'Run the <code>composer install</code> command.', -            'Run the "composer install" command.' -        ); - -        if (false !== $requiredPhpVersion) { -            $this->addRequirement( -                version_compare($installedPhpVersion, $requiredPhpVersion, '>='), -                sprintf('PHP version must be at least %s (%s installed)', $requiredPhpVersion, $installedPhpVersion), -                sprintf('You are running PHP version "<strong>%s</strong>", but Symfony needs at least PHP "<strong>%s</strong>" to run. -                Before using Symfony, upgrade your PHP installation, preferably to the latest version.', -                    $installedPhpVersion, $requiredPhpVersion), -                sprintf('Install PHP %s or newer (installed version is %s)', $requiredPhpVersion, $installedPhpVersion) -            ); -        } - -        $this->addRequirement( -            version_compare($installedPhpVersion, '5.3.16', '!='), -            'PHP version must not be 5.3.16 as Symfony won\'t work properly with it', -            'Install PHP 5.3.17 or newer (or downgrade to an earlier PHP version)' -        ); - -        $this->addRequirement( -            is_dir(__DIR__.'/../vendor/composer'), -            'Vendor libraries must be installed', -            'Vendor libraries are missing. Install composer following instructions from <a href="http://getcomposer.org/">http://getcomposer.org/</a>. '. -                'Then run "<strong>php composer.phar install</strong>" to install them.' -        ); - -        $cacheDir = is_dir(__DIR__.'/../var/cache') ? __DIR__.'/../var/cache' : __DIR__.'/cache'; - -        $this->addRequirement( -            is_writable($cacheDir), -            'app/cache/ or var/cache/ directory must be writable', -            'Change the permissions of either "<strong>app/cache/</strong>" or  "<strong>var/cache/</strong>" directory so that the web server can write into it.' -        ); - -        $logsDir = is_dir(__DIR__.'/../var/logs') ? __DIR__.'/../var/logs' : __DIR__.'/logs'; - -        $this->addRequirement( -            is_writable($logsDir), -            'app/logs/ or var/logs/ directory must be writable', -            'Change the permissions of either "<strong>app/logs/</strong>" or  "<strong>var/logs/</strong>" directory so that the web server can write into it.' -        ); - -        if (version_compare($installedPhpVersion, '7.0.0', '<')) { -            $this->addPhpIniRequirement( -                'date.timezone', true, false, -                'date.timezone setting must be set', -                'Set the "<strong>date.timezone</strong>" setting in php.ini<a href="#phpini">*</a> (like Europe/Paris).' -            ); -        } - -        if (false !== $requiredPhpVersion && version_compare($installedPhpVersion, $requiredPhpVersion, '>=')) { -            $timezones = array(); -            foreach (DateTimeZone::listAbbreviations() as $abbreviations) { -                foreach ($abbreviations as $abbreviation) { -                    $timezones[$abbreviation['timezone_id']] = true; -                } -            } - -            $this->addRequirement( -                isset($timezones[@date_default_timezone_get()]), -                sprintf('Configured default timezone "%s" must be supported by your installation of PHP', @date_default_timezone_get()), -                'Your default timezone is not supported by PHP. Check for typos in your <strong>php.ini</strong> file and have a look at the list of deprecated timezones at <a href="http://php.net/manual/en/timezones.others.php">http://php.net/manual/en/timezones.others.php</a>.' -            ); -        } - -        $this->addRequirement( -            function_exists('iconv'), -            'iconv() must be available', -            'Install and enable the <strong>iconv</strong> extension.' -        ); - -        $this->addRequirement( -            function_exists('json_encode'), -            'json_encode() must be available', -            'Install and enable the <strong>JSON</strong> extension.' -        ); - -        $this->addRequirement( -            function_exists('session_start'), -            'session_start() must be available', -            'Install and enable the <strong>session</strong> extension.' -        ); - -        $this->addRequirement( -            function_exists('ctype_alpha'), -            'ctype_alpha() must be available', -            'Install and enable the <strong>ctype</strong> extension.' -        ); - -        $this->addRequirement( -            function_exists('token_get_all'), -            'token_get_all() must be available', -            'Install and enable the <strong>Tokenizer</strong> extension.' -        ); - -        $this->addRequirement( -            function_exists('simplexml_import_dom'), -            'simplexml_import_dom() must be available', -            'Install and enable the <strong>SimpleXML</strong> extension.' -        ); - -        if (function_exists('apc_store') && ini_get('apc.enabled')) { -            if (version_compare($installedPhpVersion, '5.4.0', '>=')) { -                $this->addRequirement( -                    version_compare(phpversion('apc'), '3.1.13', '>='), -                    'APC version must be at least 3.1.13 when using PHP 5.4', -                    'Upgrade your <strong>APC</strong> extension (3.1.13+).' -                ); -            } else { -                $this->addRequirement( -                    version_compare(phpversion('apc'), '3.0.17', '>='), -                    'APC version must be at least 3.0.17', -                    'Upgrade your <strong>APC</strong> extension (3.0.17+).' -                ); -            } -        } - -        $this->addPhpIniRequirement('detect_unicode', false); - -        if (extension_loaded('suhosin')) { -            $this->addPhpIniRequirement( -                'suhosin.executor.include.whitelist', -                create_function('$cfgValue', 'return false !== stripos($cfgValue, "phar");'), -                false, -                'suhosin.executor.include.whitelist must be configured correctly in php.ini', -                'Add "<strong>phar</strong>" to <strong>suhosin.executor.include.whitelist</strong> in php.ini<a href="#phpini">*</a>.' -            ); -        } - -        if (extension_loaded('xdebug')) { -            $this->addPhpIniRequirement( -                'xdebug.show_exception_trace', false, true -            ); - -            $this->addPhpIniRequirement( -                'xdebug.scream', false, true -            ); - -            $this->addPhpIniRecommendation( -                'xdebug.max_nesting_level', -                create_function('$cfgValue', 'return $cfgValue > 100;'), -                true, -                'xdebug.max_nesting_level should be above 100 in php.ini', -                'Set "<strong>xdebug.max_nesting_level</strong>" to e.g. "<strong>250</strong>" in php.ini<a href="#phpini">*</a> to stop Xdebug\'s infinite recursion protection erroneously throwing a fatal error in your project.' -            ); -        } - -        $pcreVersion = defined('PCRE_VERSION') ? (float) PCRE_VERSION : null; - -        $this->addRequirement( -            null !== $pcreVersion, -            'PCRE extension must be available', -            'Install the <strong>PCRE</strong> extension (version 8.0+).' -        ); - -        if (extension_loaded('mbstring')) { -            $this->addPhpIniRequirement( -                'mbstring.func_overload', -                create_function('$cfgValue', 'return (int) $cfgValue === 0;'), -                true, -                'string functions should not be overloaded', -                'Set "<strong>mbstring.func_overload</strong>" to <strong>0</strong> in php.ini<a href="#phpini">*</a> to disable function overloading by the mbstring extension.' -            ); -        } - -        /* optional recommendations follow */ - -        if (file_exists(__DIR__.'/../vendor/composer')) { -            require_once __DIR__.'/../vendor/autoload.php'; - -            try { -                $r = new ReflectionClass('Sensio\Bundle\DistributionBundle\SensioDistributionBundle'); - -                $contents = file_get_contents(dirname($r->getFileName()).'/Resources/skeleton/app/SymfonyRequirements.php'); -            } catch (ReflectionException $e) { -                $contents = ''; -            } -            $this->addRecommendation( -                file_get_contents(__FILE__) === $contents, -                'Requirements file should be up-to-date', -                'Your requirements file is outdated. Run composer install and re-check your configuration.' -            ); -        } - -        $this->addRecommendation( -            version_compare($installedPhpVersion, '5.3.4', '>='), -            'You should use at least PHP 5.3.4 due to PHP bug #52083 in earlier versions', -            'Your project might malfunction randomly due to PHP bug #52083 ("Notice: Trying to get property of non-object"). Install PHP 5.3.4 or newer.' -        ); - -        $this->addRecommendation( -            version_compare($installedPhpVersion, '5.3.8', '>='), -            'When using annotations you should have at least PHP 5.3.8 due to PHP bug #55156', -            'Install PHP 5.3.8 or newer if your project uses annotations.' -        ); - -        $this->addRecommendation( -            version_compare($installedPhpVersion, '5.4.0', '!='), -            'You should not use PHP 5.4.0 due to the PHP bug #61453', -            'Your project might not work properly due to the PHP bug #61453 ("Cannot dump definitions which have method calls"). Install PHP 5.4.1 or newer.' -        ); - -        $this->addRecommendation( -            version_compare($installedPhpVersion, '5.4.11', '>='), -            'When using the logout handler from the Symfony Security Component, you should have at least PHP 5.4.11 due to PHP bug #63379 (as a workaround, you can also set invalidate_session to false in the security logout handler configuration)', -            'Install PHP 5.4.11 or newer if your project uses the logout handler from the Symfony Security Component.' -        ); - -        $this->addRecommendation( -            (version_compare($installedPhpVersion, '5.3.18', '>=') && version_compare($installedPhpVersion, '5.4.0', '<')) -            || -            version_compare($installedPhpVersion, '5.4.8', '>='), -            'You should use PHP 5.3.18+ or PHP 5.4.8+ to always get nice error messages for fatal errors in the development environment due to PHP bug #61767/#60909', -            'Install PHP 5.3.18+ or PHP 5.4.8+ if you want nice error messages for all fatal errors in the development environment.' -        ); - -        if (null !== $pcreVersion) { -            $this->addRecommendation( -                $pcreVersion >= 8.0, -                sprintf('PCRE extension should be at least version 8.0 (%s installed)', $pcreVersion), -                '<strong>PCRE 8.0+</strong> is preconfigured in PHP since 5.3.2 but you are using an outdated version of it. Symfony probably works anyway but it is recommended to upgrade your PCRE extension.' -            ); -        } - -        $this->addRecommendation( -            class_exists('DomDocument'), -            'PHP-DOM and PHP-XML modules should be installed', -            'Install and enable the <strong>PHP-DOM</strong> and the <strong>PHP-XML</strong> modules.' -        ); - -        $this->addRecommendation( -            function_exists('mb_strlen'), -            'mb_strlen() should be available', -            'Install and enable the <strong>mbstring</strong> extension.' -        ); - -        $this->addRecommendation( -            function_exists('utf8_decode'), -            'utf8_decode() should be available', -            'Install and enable the <strong>XML</strong> extension.' -        ); - -        $this->addRecommendation( -            function_exists('filter_var'), -            'filter_var() should be available', -            'Install and enable the <strong>filter</strong> extension.' -        ); - -        if (!defined('PHP_WINDOWS_VERSION_BUILD')) { -            $this->addRecommendation( -                function_exists('posix_isatty'), -                'posix_isatty() should be available', -                'Install and enable the <strong>php_posix</strong> extension (used to colorize the CLI output).' -            ); -        } - -        $this->addRecommendation( -            extension_loaded('intl'), -            'intl extension should be available', -            'Install and enable the <strong>intl</strong> extension (used for validators).' -        ); - -        if (extension_loaded('intl')) { -            // in some WAMP server installations, new Collator() returns null -            $this->addRecommendation( -                null !== new Collator('fr_FR'), -                'intl extension should be correctly configured', -                'The intl extension does not behave properly. This problem is typical on PHP 5.3.X x64 WIN builds.' -            ); - -            // check for compatible ICU versions (only done when you have the intl extension) -            if (defined('INTL_ICU_VERSION')) { -                $version = INTL_ICU_VERSION; -            } else { -                $reflector = new ReflectionExtension('intl'); - -                ob_start(); -                $reflector->info(); -                $output = strip_tags(ob_get_clean()); - -                preg_match('/^ICU version +(?:=> )?(.*)$/m', $output, $matches); -                $version = $matches[1]; -            } - -            $this->addRecommendation( -                version_compare($version, '4.0', '>='), -                'intl ICU version should be at least 4+', -                'Upgrade your <strong>intl</strong> extension with a newer ICU version (4+).' -            ); - -            if (class_exists('Symfony\Component\Intl\Intl')) { -                $this->addRecommendation( -                    \Symfony\Component\Intl\Intl::getIcuDataVersion() <= \Symfony\Component\Intl\Intl::getIcuVersion(), -                    sprintf('intl ICU version installed on your system is outdated (%s) and does not match the ICU data bundled with Symfony (%s)', \Symfony\Component\Intl\Intl::getIcuVersion(), \Symfony\Component\Intl\Intl::getIcuDataVersion()), -                    'To get the latest internationalization data upgrade the ICU system package and the intl PHP extension.' -                ); -                if (\Symfony\Component\Intl\Intl::getIcuDataVersion() <= \Symfony\Component\Intl\Intl::getIcuVersion()) { -                    $this->addRecommendation( -                        \Symfony\Component\Intl\Intl::getIcuDataVersion() === \Symfony\Component\Intl\Intl::getIcuVersion(), -                        sprintf('intl ICU version installed on your system (%s) does not match the ICU data bundled with Symfony (%s)', \Symfony\Component\Intl\Intl::getIcuVersion(), \Symfony\Component\Intl\Intl::getIcuDataVersion()), -                        'To avoid internationalization data inconsistencies upgrade the symfony/intl component.' -                    ); -                } -            } - -            $this->addPhpIniRecommendation( -                'intl.error_level', -                create_function('$cfgValue', 'return (int) $cfgValue === 0;'), -                true, -                'intl.error_level should be 0 in php.ini', -                'Set "<strong>intl.error_level</strong>" to "<strong>0</strong>" in php.ini<a href="#phpini">*</a> to inhibit the messages when an error occurs in ICU functions.' -            ); -        } - -        $accelerator = -            (extension_loaded('eaccelerator') && ini_get('eaccelerator.enable')) -            || -            (extension_loaded('apc') && ini_get('apc.enabled')) -            || -            (extension_loaded('Zend Optimizer+') && ini_get('zend_optimizerplus.enable')) -            || -            (extension_loaded('Zend OPcache') && ini_get('opcache.enable')) -            || -            (extension_loaded('xcache') && ini_get('xcache.cacher')) -            || -            (extension_loaded('wincache') && ini_get('wincache.ocenabled')) -        ; - -        $this->addRecommendation( -            $accelerator, -            'a PHP accelerator should be installed', -            'Install and/or enable a <strong>PHP accelerator</strong> (highly recommended).' -        ); - -        if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') { -            $this->addRecommendation( -                $this->getRealpathCacheSize() >= 5 * 1024 * 1024, -                'realpath_cache_size should be at least 5M in php.ini', -                'Setting "<strong>realpath_cache_size</strong>" to e.g. "<strong>5242880</strong>" or "<strong>5M</strong>" in php.ini<a href="#phpini">*</a> may improve performance on Windows significantly in some cases.' -            ); -        } - -        $this->addPhpIniRecommendation('short_open_tag', false); - -        $this->addPhpIniRecommendation('magic_quotes_gpc', false, true); - -        $this->addPhpIniRecommendation('register_globals', false, true); - -        $this->addPhpIniRecommendation('session.auto_start', false); - -        $this->addRecommendation( -            class_exists('PDO'), -            'PDO should be installed', -            'Install <strong>PDO</strong> (mandatory for Doctrine).' -        ); - -        if (class_exists('PDO')) { -            $drivers = PDO::getAvailableDrivers(); -            $this->addRecommendation( -                count($drivers) > 0, -                sprintf('PDO should have some drivers installed (currently available: %s)', count($drivers) ? implode(', ', $drivers) : 'none'), -                'Install <strong>PDO drivers</strong> (mandatory for Doctrine).' -            ); -        } -    } - -    /** -     * Loads realpath_cache_size from php.ini and converts it to int. -     * -     * (e.g. 16k is converted to 16384 int) -     * -     * @return int -     */ -    protected function getRealpathCacheSize() -    { -        $size = ini_get('realpath_cache_size'); -        $size = trim($size); -        $unit = ''; -        if (!ctype_digit($size)) { -            $unit = strtolower(substr($size, -1, 1)); -            $size = (int) substr($size, 0, -1); -        } -        switch ($unit) { -            case 'g': -                return $size * 1024 * 1024 * 1024; -            case 'm': -                return $size * 1024 * 1024; -            case 'k': -                return $size * 1024; -            default: -                return (int) $size; -        } -    } - -    /** -     * Defines PHP required version from Symfony version. -     * -     * @return string|false The PHP required version or false if it could not be guessed -     */ -    protected function getPhpRequiredVersion() -    { -        if (!file_exists($path = __DIR__.'/../composer.lock')) { -            return false; -        } - -        $composerLock = json_decode(file_get_contents($path), true); -        foreach ($composerLock['packages'] as $package) { -            $name = $package['name']; -            if ('symfony/symfony' !== $name && 'symfony/http-kernel' !== $name) { -                continue; -            } - -            return (int) $package['version'][1] > 2 ? self::REQUIRED_PHP_VERSION : self::LEGACY_REQUIRED_PHP_VERSION; -        } - -        return false; -    } -} diff --git a/var/cache/.gitkeep b/var/cache/.gitkeep deleted file mode 100644 index e69de29..0000000 --- a/var/cache/.gitkeep +++ /dev/null diff --git a/var/logs/.gitkeep b/var/logs/.gitkeep deleted file mode 100644 index e69de29..0000000 --- a/var/logs/.gitkeep +++ /dev/null diff --git a/var/sessions/.gitkeep b/var/sessions/.gitkeep deleted file mode 100644 index e69de29..0000000 --- a/var/sessions/.gitkeep +++ /dev/null diff --git a/web.config b/web.config deleted file mode 100644 index a46cca3..0000000 --- a/web.config +++ /dev/null @@ -1,35 +0,0 @@ -<configuration> -  <system.webServer> -    <rewrite> -      <rules> -        <clear /> -        <rule name="BlockAccessToPublic" patternSyntax="Wildcard" stopProcessing="true"> -          <match url="*" /> -          <conditions logicalGrouping="MatchAll" trackAllCaptures="false"> -            <add input="{URL}" pattern="/web/*" /> -          </conditions> -          <action type="CustomResponse" statusCode="403" statusReason="Forbidden: Access is denied." statusDescription="You do not have permission to view this directory or page using the credentials that you supplied." /> -        </rule> -        <rule name="RewriteAssetsToPublic" stopProcessing="true"> -          <match url="^(.*)(\.css|\.js|\.jpg|\.png|\.gif|\.ico)$" /> -          <conditions logicalGrouping="MatchAll" trackAllCaptures="false"> -          </conditions> -          <action type="Rewrite" url="web/{R:0}" /> -        </rule> -        <rule name="RewriteRequestsToPublic" stopProcessing="true"> -          <match url="^(.*)$" /> -          <conditions logicalGrouping="MatchAll" trackAllCaptures="false"> -          </conditions> -          <action type="Rewrite" url="web/app.php/{R:0}" /> -        </rule> -        <rule name="Redirect to https"> -          <match url="(.*)"/> -           <conditions> -            <add input="{HTTPS}" pattern="Off"/> -          </conditions> -          <action type="Redirect" url="https://{HTTP_HOST}/{R:1}"/> -       </rule> -      </rules> -    </rewrite> -  </system.webServer> -</configuration> diff --git a/web/.htaccess b/web/.htaccess deleted file mode 100644 index 4dc7251..0000000 --- a/web/.htaccess +++ /dev/null @@ -1,68 +0,0 @@ -# Use the front controller as index file. It serves as a fallback solution when -# every other rewrite/redirect fails (e.g. in an aliased environment without -# mod_rewrite). Additionally, this reduces the matching process for the -# start page (path "/") because otherwise Apache will apply the rewriting rules -# to each configured DirectoryIndex file (e.g. index.php, index.html, index.pl). -DirectoryIndex app.php - -# By default, Apache does not evaluate symbolic links if you did not enable this -# feature in your server configuration. Uncomment the following line if you -# install assets as symlinks or if you experience problems related to symlinks -# when compiling LESS/Sass/CoffeScript assets. -# Options FollowSymlinks - -# Disabling MultiViews prevents unwanted negotiation, e.g. "/app" should not resolve -# to the front controller "/app.php" but be rewritten to "/app.php/app". -<IfModule mod_negotiation.c> -    Options -MultiViews -</IfModule> - -<IfModule mod_rewrite.c> -    RewriteEngine On - -    # Determine the RewriteBase automatically and set it as environment variable. -    # If you are using Apache aliases to do mass virtual hosting or installed the -    # project in a subdirectory, the base path will be prepended to allow proper -    # resolution of the app.php file and to redirect to the correct URI. It will -    # work in environments without path prefix as well, providing a safe, one-size -    # fits all solution. But as you do not need it in this case, you can comment -    # the following 2 lines to eliminate the overhead. -    RewriteCond %{REQUEST_URI}::$1 ^(/.+)/(.*)::\2$ -    RewriteRule ^(.*) - [E=BASE:%1] - -    # Sets the HTTP_AUTHORIZATION header removed by Apache -    RewriteCond %{HTTP:Authorization} . -    RewriteRule ^ - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] - -    # Redirect to URI without front controller to prevent duplicate content -    # (with and without `/app.php`). Only do this redirect on the initial -    # rewrite by Apache and not on subsequent cycles. Otherwise we would get an -    # endless redirect loop (request -> rewrite to front controller -> -    # redirect -> request -> ...). -    # So in case you get a "too many redirects" error or you always get redirected -    # to the start page because your Apache does not expose the REDIRECT_STATUS -    # environment variable, you have 2 choices: -    # - disable this feature by commenting the following 2 lines or -    # - use Apache >= 2.3.9 and replace all L flags by END flags and remove the -    #   following RewriteCond (best solution) -    RewriteCond %{ENV:REDIRECT_STATUS} ^$ -    RewriteRule ^app\.php(?:/(.*)|$) %{ENV:BASE}/$1 [R=301,L] - -    # If the requested filename exists, simply serve it. -    # We only want to let Apache serve files and not directories. -    RewriteCond %{REQUEST_FILENAME} -f -    RewriteRule ^ - [L] - -    # Rewrite all other queries to the front controller. -    RewriteRule ^ %{ENV:BASE}/app.php [L] -</IfModule> - -<IfModule !mod_rewrite.c> -    <IfModule mod_alias.c> -        # When mod_rewrite is not available, we instruct a temporary redirect of -        # the start page to the front controller explicitly so that the website -        # and the generated links can still be used. -        RedirectMatch 302 ^/$ /app.php/ -        # RedirectTemp cannot be used instead -    </IfModule> -</IfModule> diff --git a/web/app.php b/web/app.php deleted file mode 100644 index 943d089..0000000 --- a/web/app.php +++ /dev/null @@ -1,21 +0,0 @@ -<?php - -use Symfony\Component\HttpFoundation\Request; - -require __DIR__.'/../vendor/autoload.php'; -if (PHP_VERSION_ID < 70000) { -    include_once __DIR__.'/../var/bootstrap.php.cache'; -} - -$kernel = new AppKernel('prod', false); -if (PHP_VERSION_ID < 70000) { -    $kernel->loadClassCache(); -} -//$kernel = new AppCache($kernel); - -// When using the HttpCache, you need to call the method in your front controller instead of relying on the configuration parameter -//Request::enableHttpMethodParameterOverride(); -$request = Request::createFromGlobals(); -$response = $kernel->handle($request); -$response->send(); -$kernel->terminate($request, $response); diff --git a/web/app_dev.php b/web/app_dev.php deleted file mode 100644 index d2ff583..0000000 --- a/web/app_dev.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -use Symfony\Component\Debug\Debug; -use Symfony\Component\HttpFoundation\Request; - -// If you don't want to setup permissions the proper way, just uncomment the following PHP line -// read https://symfony.com/doc/current/setup.html#checking-symfony-application-configuration-and-setup -// for more information -//umask(0000); - -// This check prevents access to debug front controllers that are deployed by accident to production servers. -// Feel free to remove this, extend it, or make something more sophisticated. -if (isset($_SERVER['HTTP_CLIENT_IP']) -    || isset($_SERVER['HTTP_X_FORWARDED_FOR']) -    || !(in_array(@$_SERVER['REMOTE_ADDR'], ['127.0.0.1', '::1'], true) || PHP_SAPI === 'cli-server') -) { -    header('HTTP/1.0 403 Forbidden'); -    exit('You are not allowed to access this file. Check '.basename(__FILE__).' for more information.'); -} - -require __DIR__.'/../vendor/autoload.php'; -Debug::enable(); - -$kernel = new AppKernel('dev', true); -if (PHP_VERSION_ID < 70000) { -    $kernel->loadClassCache(); -} -$request = Request::createFromGlobals(); -$response = $kernel->handle($request); -$response->send(); -$kernel->terminate($request, $response); diff --git a/web/apple-touch-icon.png b/web/apple-touch-icon.pngBinary files differ deleted file mode 100644 index 6e6b6ce..0000000 --- a/web/apple-touch-icon.png +++ /dev/null diff --git a/web/config.php b/web/config.php deleted file mode 100644 index fd7e17e..0000000 --- a/web/config.php +++ /dev/null @@ -1,422 +0,0 @@ -<?php - -/* - * ************** CAUTION ************** - * - * DO NOT EDIT THIS FILE as it will be overridden by Composer as part of - * the installation/update process. The original file resides in the - * SensioDistributionBundle. - * - * ************** CAUTION ************** - */ - -if (!isset($_SERVER['HTTP_HOST'])) { -    exit("This script cannot be run from the CLI. Run it from a browser.\n"); -} - -if (!in_array(@$_SERVER['REMOTE_ADDR'], array( -    '127.0.0.1', -    '::1', -))) { -    header('HTTP/1.0 403 Forbidden'); -    exit('This script is only accessible from localhost.'); -} - -require_once dirname(__FILE__).'/../var/SymfonyRequirements.php'; - -$symfonyRequirements = new SymfonyRequirements(); - -$majorProblems = $symfonyRequirements->getFailedRequirements(); -$minorProblems = $symfonyRequirements->getFailedRecommendations(); -$hasMajorProblems = (bool) count($majorProblems); -$hasMinorProblems = (bool) count($minorProblems); - -?> -<!DOCTYPE html> -<html> -    <head> -        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> -        <meta name="robots" content="noindex,nofollow" /> -        <title>Symfony Configuration Checker</title> -        <style> -            /* styles copied from symfony framework bundle */ -            html { -                background: #eee; -            } -            body { -                font: 11px Verdana, Arial, sans-serif; -                color: #333; -            } -            .sf-reset, .sf-reset .block, .sf-reset #message { -                margin: auto; -            } -            img { -                border: 0; -            } -            .clear { -                clear: both; -                height: 0; -                font-size: 0; -                line-height: 0; -            } -            .clear-fix:after { -                content: "\0020"; -                display: block; -                height: 0; -                clear: both; -                visibility: hidden; -            } -            .clear-fix { -                display: inline-block; -            } -            * html .clear-fix { -                height: 1%; -            } -            .clear-fix { -                display: block; -            } -            .header { -                padding: 30px 30px 20px 30px; -            } -            .header-logo { -                float: left; -            } -            .search { -                float: right; -                padding-top: 20px; -            } -            .search label { -                line-height: 28px; -                vertical-align: middle; -            } -            .search input { -                width: 195px; -                font-size: 12px; -                border: 1px solid #dadada; -                background: #fff url(data:image/gif;base64,R0lGODlhAQAFAKIAAPX19e/v7/39/fr6+urq6gAAAAAAAAAAACH5BAAAAAAALAAAAAABAAUAAAMESAEjCQA7) repeat-x left top; -                padding: 5px 6px; -                color: #565656; -            } -            .search input[type="search"] { -                -webkit-appearance: textfield; -            } -            #content { -                width: 970px; -                margin: 0 auto; -            } -            #content pre { -                white-space: normal; -                font-family: Arial, Helvetica, sans-serif; -            } - -            /* -            Copyright (c) 2010, Yahoo! Inc. All rights reserved. -            Code licensed under the BSD License: -            http://developer.yahoo.com/yui/license.html -            version: 3.1.2 -            build: 56 -            */ -            .sf-reset div,.sf-reset dl,.sf-reset dt,.sf-reset dd,.sf-reset ul,.sf-reset ol,.sf-reset li,.sf-reset h1,.sf-reset h2,.sf-reset h3,.sf-reset h4,.sf-reset h5,.sf-reset h6,.sf-reset pre,.sf-reset code,.sf-reset form,.sf-reset fieldset,.sf-reset legend,.sf-reset input,.sf-reset textarea,.sf-reset p,.sf-reset blockquote,.sf-reset th,.sf-reset td{margin:0;padding:0;}.sf-reset table{border-collapse:collapse;border-spacing:0;}.sf-reset fieldset,.sf-reset img{border:0;}.sf-reset address,.sf-reset caption,.sf-reset cite,.sf-reset code,.sf-reset dfn,.sf-reset em,.sf-reset strong,.sf-reset th,.sf-reset var{font-style:normal;font-weight:normal;}.sf-reset li{list-style:none;}.sf-reset caption,.sf-reset th{text-align:left;}.sf-reset h1,.sf-reset h2,.sf-reset h3,.sf-reset h4,.sf-reset h5,.sf-reset h6{font-size:100%;font-weight:normal;}.sf-reset q:before,.sf-reset q:after{content:'';}.sf-reset abbr,.sf-reset acronym{border:0;font-variant:normal;}.sf-reset sup{vertical-align:text-top;}.sf-reset sub{vertical-align:text-bottom;}.sf-reset input,.sf-reset textarea,.sf-reset select{font-family:inherit;font-size:inherit;font-weight:inherit;}.sf-reset input,.sf-reset textarea,.sf-reset select{font-size:100%;}.sf-reset legend{color:#000;} -            .sf-reset abbr { -                border-bottom: 1px dotted #000; -                cursor: help; -            } -            .sf-reset p { -                font-size: 14px; -                line-height: 20px; -                padding-bottom: 20px; -            } -            .sf-reset strong { -                color: #313131; -                font-weight: bold; -            } -            .sf-reset a { -                color: #6c6159; -            } -            .sf-reset a img { -                border: none; -            } -            .sf-reset a:hover { -                text-decoration: underline; -            } -            .sf-reset em { -                font-style: italic; -            } -            .sf-reset h2, -            .sf-reset h3 { -                font-weight: bold; -            } -            .sf-reset h1 { -                font-family: Georgia, "Times New Roman", Times, serif; -                font-size: 20px; -                color: #313131; -                word-wrap: break-word; -            } -            .sf-reset li { -                padding-bottom: 10px; -            } -            .sf-reset .block { -                -moz-border-radius: 16px; -                -webkit-border-radius: 16px; -                border-radius: 16px; -                margin-bottom: 20px; -                background-color: #FFFFFF; -                border: 1px solid #dfdfdf; -                padding: 40px 50px; -                word-break: break-all; -            } -            .sf-reset h2 { -                font-size: 16px; -                font-family: Arial, Helvetica, sans-serif; -            } -            .sf-reset li a { -                background: none; -                color: #868686; -                text-decoration: none; -            } -            .sf-reset li a:hover { -                background: none; -                color: #313131; -                text-decoration: underline; -            } -            .sf-reset ol { -                padding: 10px 0; -            } -            .sf-reset ol li { -                list-style: decimal; -                margin-left: 20px; -                padding: 2px; -                padding-bottom: 20px; -            } -            .sf-reset ol ol li { -                list-style-position: inside; -                margin-left: 0; -                white-space: nowrap; -                font-size: 12px; -                padding-bottom: 0; -            } -            .sf-reset li .selected { -                background-color: #ffd; -            } -            .sf-button { -                display: -moz-inline-box; -                display: inline-block; -                text-align: center; -                vertical-align: middle; -                border: 0; -                background: transparent none; -                text-transform: uppercase; -                cursor: pointer; -                font: bold 11px Arial, Helvetica, sans-serif; -            } -            .sf-button span { -                text-decoration: none; -                display: block; -                height: 28px; -                float: left; -            } -            .sf-button .border-l { -                text-decoration: none; -                display: block; -                height: 28px; -                float: left; -                padding: 0 0 0 7px; -                background: transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAcCAYAAACtQ6WLAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAQtJREFUeNpiPHnyJAMakARiByDWYEGT8ADiYGVlZStubm5xlv///4MEQYoKZGRkQkRERLRYWVl5wYJQyXBZWdkwCQkJUxAHKgaWlAHSLqKiosb//v1DsYMFKGCvoqJiDmQzwXTAJYECulxcXNLoumCSoszMzDzoumDGghQwYZUECWIzkrAkSIIGOmlkLI10AiX//P379x8jIyMTNmPf/v79+ysLCwsvuiQoNi5//fr1Kch4dAyS3P/gwYMTQBP+wxwHw0xA4gkQ73v9+vUZdJ2w1Lf82bNn4iCHCQoKasHsZw4ODgbRIL8c+/Lly5M3b978Y2dn5wC6npkFLXnsAOKLjx49AmUHLYAAAwBoQubG016R5wAAAABJRU5ErkJggg==) no-repeat top left; -            } -            .sf-button .border-r { -                padding: 0 7px 0 0; -                background: transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAcCAYAAACtQ6WLAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAR1JREFUeNpiPHnyZCMDA8MNID5gZmb2nAEJMH7//v3N169fX969e/cYkL8WqGAHXPLv37//QYzfv39/fvPmzbUnT56sAXInmJub/2H5/x8sx8DCwsIrISFhDmQyPX78+CmQXs70798/BmQsKipqBNTgdvz4cWkmkE5kDATMioqKZkCFdiwg1eiAi4tLGqhQF24nMmBmZuYEigth1QkEbEBxTlySYPvJkwSJ00AnjYylgU6gxB8g/oFVEphkvgLF32KNMmCCewYUv4qhEyj47+HDhyeBzIMYOoEp8CxQw56wsLAncJ1//vz5/P79+2svX74EJc2V4BT58+fPd8CE/QKYHMGJOiIiAp6oWW7evDkNSF8DZYfIyEiU7AAQYACJ2vxVdJW4eQAAAABJRU5ErkJggg==) right top no-repeat; -            } -            .sf-button .btn-bg { -                padding: 0 14px; -                color: #636363; -                line-height: 28px; -                background: transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAcCAYAAACgXdXMAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAClJREFUeNpiPnny5EKGf//+/Wf6//8/A4QAcrGzKCZwGc9sa2urBBBgAIbDUoYVp9lmAAAAAElFTkSuQmCC) repeat-x top left; -            } -            .sf-button:hover .border-l, -            .sf-button-selected .border-l { -                background: transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAcCAYAAACtQ6WLAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAR9JREFUeNpi/P//PwMyOHfunDqQSgNiexZkibNnzxYBqZa3HOs5v7PcYQBLnjlzhg1IbfzIdsTjA/t+ht9Mr8GKwZL//v3r+sB+0OMN+zqIEf8gFMvJkyd1gXTOa9YNDP//otrPAtSV/Jp9HfPff78Z0AEL0LUeXxivMfxD0wXTqfjj/2ugkf+wSrL9/YtpJEyS4S8WI5Ek/+GR/POPFjr//cenE6/kP9q4Fo/kr39/mdj+M/zFkGQCSj5i+ccPjLJ/GBgkuYOHQR1sNDpmAkb2LBmWwL///zKCIxwZM0VHR18G6p4uxeLLAA4tJMwEshiou1iMxXaHLGswA+t/YbhORuQUv2DBAnCifvxzI+enP3dQJUFg/vz5sOzgBBBgAPxX9j0YnH4JAAAAAElFTkSuQmCC) no-repeat top left; -            } -            .sf-button:hover .border-r, -            .sf-button-selected .border-r { -                background: transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAcCAYAAACtQ6WLAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAT5JREFUeNpiPHv27BkGBoaDQDzLyMjoJgMSYHrM3WX8hn1d0f///88DFRYhSzIuv2X5H8Rg/SfKIPDTkYH/l80OINffxMTkF9O/f/8ZQPgnwyuGl+wrGd6x7vf49+9fO9jYf3+Bkkj4NesmBqAV+SdPntQC6vzHgIz//gOawbqOGchOxtAJwp8Zr4F0e7D8/fuPAR38/P8eZIo0yz8skv8YvoIk+YE6/zNgAyD7sRqLkPzzjxY6/+HS+R+fTkZ8djLh08lCUCcuSWawJGbwMTGwg7zyBatX2Bj5QZKPsBrLzaICktzN8g/NWEYGZgYZjoC/wMiei5FMpFh8QPSU6Ojoy3Cd7EwiDBJsDgxiLNY7gLrKQGIsHAxSDHxAO2TZ/b8D+TVxcXF9MCtYtLiKLgDpfUDVsxITE1GyA0CAAQA2E/N8VuHyAAAAAABJRU5ErkJggg==) right top no-repeat; -            } -            .sf-button:hover .btn-bg, -            .sf-button-selected .btn-bg { -                color: #FFFFFF; -                text-shadow:0 1px 1px #6b9311; -                background: transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAcCAIAAAAvP0KbAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAEFJREFUeNpiPnv2LNMdvlymf///M/37B8R/QfQ/MP33L4j+B6Qh7L9//sHpf2h8MA1V+w/KRjYLaDaLCU8vQIABAFO3TxZriO4yAAAAAElFTkSuQmCC) repeat-x top left; -            } - -            /* styles copied from bundles/sensiodistribution/webconfigurator/css/install.css */ -            body { -                font-size: 14px; -                font-family: "Lucida Sans Unicode", "Lucida Grande", Verdana, Arial, Helvetica, sans-serif; -            } -            .sf-reset h1.title { -                font-size: 45px; -                padding-bottom: 30px; -            } -            .sf-reset h2 { -                font-weight: bold; -                color: #FFFFFF; -                /* Font is reset to sans-serif (like body) */ -                font-family: "Lucida Sans Unicode", "Lucida Grande", Verdana, Arial, Helvetica, sans-serif; -                margin-bottom: 10px; -                background-color: #aacd4e; -                padding: 2px 4px; -                display: inline-block; -                text-transform: uppercase; -            } -            .sf-reset ul a, -            .sf-reset ul a:hover { -                background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAICAYAAAAx8TU7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAFdJREFUeNpiYACBjjOhDEiACSggCKTLgXQ5TJARqhIkcReIKxgqTGYxwvV0nDEGkmeAOIwJySiQ4HsgvseIpGo3ELsCtZ9lRDIvDCiwhwHJPEFkJwEEGACq6hdnax8y1AAAAABJRU5ErkJggg==) no-repeat right 7px; -                padding-right: 10px; -            } -            .sf-reset ul, ol { -                padding-left: 20px; -            } -            .sf-reset li { -                padding-bottom: 18px; -            } -            .sf-reset ol li { -                list-style-type: decimal; -            } -            .sf-reset ul li { -                list-style-type: none; -            } -            .sf-reset .symfony-blocks-install { -                overflow: hidden; -            } -            .sf-reset .symfony-install-continue { -                font-size: 0.95em; -                padding-left: 0; -            } -            .sf-reset .symfony-install-continue li { -                padding-bottom: 10px; -            } -            .sf-reset .ok { -                color: #fff; -                font-family: "Lucida Sans Unicode", "Lucida Grande", Verdana, Arial, Helvetica, sans-serif; -                background-color: #6d6; -                padding: 10px; -                margin-bottom: 20px; -            } -            .sf-reset .ko { -                background-color: #d66; -            } -            .sf-reset p.help { -                padding: 12px 16px; -                word-break: break-word; -            } -            .version { -                text-align: right; -                font-size: 10px; -                margin-right: 20px; -            } -            .sf-reset a, -            .sf-reset li a { -                color: #08C; -                text-decoration: none; -            } -            .sf-reset a:hover, -            .sf-reset li a:hover { -                color: #08C; -                text-decoration: underline; -            } -            .sf-reset textarea { -                padding: 7px; -            } -        </style> -    </head> -    <body> -        <div id="content"> -            <div class="header clear-fix"> -                <div class="header-logo"> -                    <img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALYAAAA+CAMAAACxzRGDAAAAUVBMVEX////Ly8yko6WLioxkYmVXVVkwLjLl5eWxsLJKSEzy8vJxcHLY2Ni+vb89Oz9XVVh+fH+Yl5n///+xsbLY2Nlxb3KkpKWXlph+fX+LiYy+vr/IZP61AAAAAXRSTlMAQObYZgAABRBJREFUeNrVmtuWoyAQRS1FEEQSzQU7//+hYxUiXsKQZLJWM+chsUloN+WhCuguYoKyYqzmvGasKqH4HyRKxndipcgcumH8qViTM7TkUclcwaHmf5XM0eWq4km1KjdqXfMXJHVe1J3hL8lk5fCGv6wmT+o0d87U+XNrk0Y9nfv+7LM6ZJH5ZBL6LAbSxQ3Q5FDr22Skr8PQSy4n7isnsQxSX4r6pobhjCHHeDNOKrO3yGmCvZOjV9jmt8ulTdXFKdbKLNh+kOMvBzuVRa4Y7MUsdEUSWQe7xxCfZmcwjHU83LqzFvSbJQOXQvptbPnEFoyZtUUGwTeKuLuTHyT1kaP0P6cR01OKvv448gtl61dqZfmJezQmU/t+1R2fJLtBwXV6uWGwB9SZPrn0fKO2WAvQN1PUhHjTom3xgXYTkvlSKHs19OhslETq6X3HrXbjt8XbGj9b4Gi+lUAnL6XxQj8Pyk9N4Bt1xUrsLVN/3isYMug8rODMdbgOvoHs8uAb2fcANIAzkKCLYy+AXRpSU8sr1r4P67xhLgPp7vM32zlqt7Bhq2fI1Hwp+VgANxok59SsGV3oqdUL0YVDMRY7Yg8QLbVUU4NZNoOq5hJHuxEM28Sh/IyUZ8D3reR+yc58EGvOy2U0HQL6G9V+kWyEWHmzaMx6t4o9RhOm/riUiYrzqij4Ptqkn7AaCXqc+F47m04ahfde7YIz8RHEBN6BdVwdIGRVdNbKqYu1Hc0x0wBY4wqC8+XUgBGnj81SZsQB+0yAS1x/BlI/6ebHHk0lauQLuPDpu6EwAVJ7T0rl2uXa23jcqNyOZekhqYHRz3JOANrF4wCCmEs1f9D1lUe0n4NAATed80Y5e0Q7CO2TezM/BR6wKdgQzKbCF4uOQC3Bk0fKAzbFlyRWg3gksA/gmm7eOjrpaKX7fHlEW2xLbE6GZsPiCiShVzN7RG2xTz2G+OJtEqzdJ7APxy3MrSsV0VukXbKMp9lhs5BN6dr3CN+sySUaoxGwfRUM3I/gdPYONgVU+PLX4vUWm32AvUySarbONvcpV2RQEPKKjEBHFk01kQDGRblnn8ZuE9g+JUl8OWAPbkFK2K6JxhJVvF47FzYYnAN22ttwxKYCoH36rheEB7KG/HF/YUaa2G5JF+55tpyrl7B1WHM39HuP2N2EXPl1UBu8vbj4OjvD+NoTE4ssF+ScARgaJY1N7+u8bY/Y9BSM5PKwJbvMVab32YP5FB5TtcYVrGoASolVLTzI7kVsYVxRtAb5n2JXq1vCdtd47XtYItynrN0835PasLg0y13aOPbmPI+on2Lr9e5tjSHvgkAvclUjL3Fsdaw03IzgTR62yYClk7QMah4IQ0qSsoYYbOix6zJR1ZGDNMOY3Bb6W5S6jiyovep3t7bUPyoq7OkjYumrfESp8zSBc/OLosVf+nTnnKjsqR16++WDwpI8FxJWRFTlI6NKnqYJaL96TqjAbo9Toi5QiWBDcmfdFV+T8dkvFe5bItgstbM2X6QG2mVun+cazfRwOS0eiaeRRJKgLfc3BQAqfnhJyz8lfR6580SF/FXVu83Nz1xrrnFqqXL6Qxl47DNSm4RFflvN5sABDD8peouqLLKQXVdGbnqf+qIpOxON4ZyYdJEJ6sy4zS2c5eRPTT4Jyp46qDE5/ptAWqJOQ9e6yE82FXBbZCk1/tXVoshVoopE3CB0zmraI3nbqCJ/gW3ZMgtbC5nh/QHlOoOZBxQCRgAAAABJRU5ErkJggg==" alt="Symfony" /> -                </div> - -                <div class="search"> -                  <form method="get" action="http://symfony.com/search"> -                    <div class="form-row"> - -                      <label for="search-id"> -                                <img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAQAAAC1+jfqAAABUElEQVQoz2NgAIJ29iBdD0d7X2cPb+tY2f9MDMjgP2O2hKu7vS8CBlisZUNSMJ3fxRMkXO61wm2ue6I3iB1q8Z8ZriDZFCS03fm/wX+1/xp/TBo8QPxeqf+MUAW+QIFKj/+q/wX/c/3n/i/6Qd/bx943z/Q/K1SBI1D9fKv/AhCn/Wf5L5EHdFGKw39OqAIXoPpOMziX4T9/DFBBnuN/HqhAEtCKCNf/XDA/rZRyAmrpsvrPDVUw3wrkqCiLaewg6TohX1d7X0ffs5r/OaAKfinmgt3t4ulr4+Xg4ANip3j+l/zPArNT4LNOD0pAgWCSOUIBy3+h/+pXbBa5tni0eMx23+/mB1YSYnENroT5Pw/QSOX/mkCo+l/jgo0v2KJA643s8PgAmsMBDCbu/5xALHPB2husxN9uCzsDOgAq5kAoaZVnYMCh5Ky1r88Eh/+iABM8jUk7ClYIAAAAAElFTkSuQmCC" alt="Search on Symfony website" /> -                      </label> - -                      <input name="q" id="search-id" type="search" placeholder="Search on Symfony website" /> - -                      <button type="submit" class="sf-button"> -                          <span class="border-l"> -                            <span class="border-r"> -                                <span class="btn-bg">OK</span> -                            </span> -                        </span> -                      </button> -                    </div> -                   </form> -                </div> -            </div> - -            <div class="sf-reset"> -                <div class="block"> -                    <div class="symfony-block-content"> -                        <h1 class="title">Configuration Checker</h1> -                        <p> -                            This script analyzes your system to check whether is -                            ready to run Symfony applications. -                        </p> - -                        <?php if ($hasMajorProblems): ?> -                            <h2 class="ko">Major problems</h2> -                            <p>Major problems have been detected and <strong>must</strong> be fixed before continuing:</p> -                            <ol> -                                <?php foreach ($majorProblems as $problem): ?> -                                    <li><?php echo $problem->getTestMessage() ?> -                                        <p class="help"><em><?php echo $problem->getHelpHtml() ?></em></p> -                                    </li> -                                <?php endforeach; ?> -                            </ol> -                        <?php endif; ?> - -                        <?php if ($hasMinorProblems): ?> -                            <h2>Recommendations</h2> -                            <p> -                                <?php if ($hasMajorProblems): ?>Additionally, to<?php else: ?>To<?php endif; ?> enhance your Symfony experience, -                                it’s recommended that you fix the following: -                            </p> -                            <ol> -                                <?php foreach ($minorProblems as $problem): ?> -                                    <li><?php echo $problem->getTestMessage() ?> -                                        <p class="help"><em><?php echo $problem->getHelpHtml() ?></em></p> -                                    </li> -                                <?php endforeach; ?> -                            </ol> -                        <?php endif; ?> - -                        <?php if ($symfonyRequirements->hasPhpIniConfigIssue()): ?> -                            <p id="phpini">* -                                <?php if ($symfonyRequirements->getPhpIniConfigPath()): ?> -                                    Changes to the <strong>php.ini</strong> file must be done in "<strong><?php echo $symfonyRequirements->getPhpIniConfigPath() ?></strong>". -                                <?php else: ?> -                                    To change settings, create a "<strong>php.ini</strong>". -                                <?php endif; ?> -                            </p> -                        <?php endif; ?> - -                        <?php if (!$hasMajorProblems && !$hasMinorProblems): ?> -                            <p class="ok">All checks passed successfully. Your system is ready to run Symfony applications.</p> -                        <?php endif; ?> - -                        <ul class="symfony-install-continue"> -                            <?php if ($hasMajorProblems || $hasMinorProblems): ?> -                                <li><a href="config.php">Re-check configuration</a></li> -                            <?php endif; ?> -                        </ul> -                    </div> -                </div> -            </div> -            <div class="version">Symfony Standard Edition</div> -        </div> -    </body> -</html> diff --git a/web/favicon.ico b/web/favicon.icoBinary files differ deleted file mode 100644 index 479f7f5..0000000 --- a/web/favicon.ico +++ /dev/null diff --git a/web/js/AllDataChart.js b/web/js/AllDataChart.js deleted file mode 100644 index 6525382..0000000 --- a/web/js/AllDataChart.js +++ /dev/null @@ -1,63 +0,0 @@ -var gasReading = { -    Co: [], -    No: [], -    So: [] -}; - -var canvas = document.querySelector('#ctx'); -var ctx = canvas.getContext('2d'); - -var datasets = [{ -    label: "Co", -    borderColor: "rgb(5, 0, 0)", -    fill: false, -    data: [] -}, { -    label: "No", -    borderColor: "rgb(69, 169, 230)", -    fill: false, -    data: [] -}, { -    label: "So", -    borderColor: "rgb(246, 250, 15)", -    fill: false, -    data: [] -}]; - -fetch('/AllDataAverage') -    .then(function(response) { -        return response.json(); -    }) -    .then(function(data) { -        drawChart(data, datasets); -    }); - -function drawChart(gasData, datasets) { - -    var finishedData = { -        labels: [] -    }; - -    Object.keys(gasData).forEach(function(key) { -        finishedData.labels.push(key); -        datasets[0].data.push(gasData[key].Co); -        datasets[1].data.push(gasData[key].No); -        datasets[2].data.push(gasData[key].So); -    }); - -    finishedData.datasets = datasets; - -    var myLineChart = new Chart(ctx, { -        type: 'line', -        data: finishedData, -        options: { -            scales: { -                xAxes: [{ -                    time: { -                        unit: 'day' -                    } -                }] -            } -        } -    }); -} diff --git a/web/js/LastWeekDataChart.js b/web/js/LastWeekDataChart.js deleted file mode 100644 index b5e3976..0000000 --- a/web/js/LastWeekDataChart.js +++ /dev/null @@ -1,63 +0,0 @@ -var gasReading = { -    Co: [], -    No: [], -    So: [] -}; - -var canvas = document.querySelector('#ctx'); -var ctx = canvas.getContext('2d'); - -var datasets = [{ -    label: "Co", -    borderColor: "rgb(5, 0, 0)", -    fill: false, -    data: [] -}, { -    label: "No", -    borderColor: "rgb(69, 169, 230)", -    fill: false, -    data: [] -}, { -    label: "So", -    borderColor: "rgb(246, 250, 15)", -    fill: false, -    data: [] -}]; - -fetch('/LastWeekDataAverage') -    .then(function(response) { -        return response.json(); -    }) -    .then(function(data) { -        drawChart(data, datasets); -    }); - -function drawChart(gasData, datasets) { - -    var finishedData = { -        labels: [] -    }; - -    Object.keys(gasData).forEach(function(key) { -        finishedData.labels.push(key); -        datasets[0].data.push(gasData[key].Co); -        datasets[1].data.push(gasData[key].No); -        datasets[2].data.push(gasData[key].So); -    }); - -    finishedData.datasets = datasets; - -    var myLineChart = new Chart(ctx, { -        type: 'line', -        data: finishedData, -        options: { -            scales: { -                xAxes: [{ -                    time: { -                        unit: 'day' -                    } -                }] -            } -        } -    }); -} diff --git a/web/js/realtime.js b/web/js/realtime.js deleted file mode 100644 index 1f5ef22..0000000 --- a/web/js/realtime.js +++ /dev/null @@ -1,110 +0,0 @@ -function arrayMax(arr) { -    var len = arr.length, max = -Infinity; -    while (len--) { -        if (arr[len] > max) { -            max = arr[len]; -        } -    } -    return max; -}; - - -const table = { -    Co: { -        breakpoints: [0, 4.4, 4.5, 9.4, 9.5, 12.4, 12.5, 15.4, 15.5, 30.4, 30.5, 40.4, 40.5, 50.4], -        aq: [0, 50, 51, 100, 101, 150, 151, 200, 201, 300, 301, 400, 401, 500] -    }, -    So: { -        breakpoints: [0.000, 0.034, 0.035, 0.144, 0.145, 0.224, 0.225, 0.304, 0.305, 0.604, 0.605, 0.804, 0.805, 1.004], -        aq:[0, 50, 51, 100, 101, 150, 151, 200, 201, 300, 301, 400, 401, 500] -    }, -    No: { -        breakpoints: [0.65, 1.24, 1.25, 1.64, 1.65, 2.04], -        aq:[201, 300, 301, 400, 401, 500] -    } -}; - - -function calculateAQI(gasName, concentration) { -    var bpLow,bpHi; -    var bpLowIndex, bpHiIndex; - -    table[gasName].breakpoints.forEach(function(value, index) { -        if(value <= concentration && table[gasName].breakpoints[index + 1] >= concentration) { -            bpLow = value; -            bpLowIndex = index; -        } - -        if(value >= concentration && table[gasName].breakpoints[index - 1] <= concentration) { -            bpHi = value; -            bpHiIndex = index; -        } - -    }); - - - -    var airQualityIndex = ((table[gasName].aq[bpHiIndex] - table[gasName].aq[bpLowIndex]) / (bpHi - bpLow)) * (concentration - bpLow) + table[gasName].aq[bpLowIndex]; - -    return airQualityIndex; - -} - - -function update() { - -    var data; - -    fetch('/latest') -        .then(function(resp) { -            return resp.json(); -        }) -        .then(function(response) { -            data = response; -            var table = document.querySelector('#latest').children; -            table[0].textContent = data.TimeStamp; -            table[1].textContent = data.Co; -            table[2].textContent = data.No; -            table[3].textContent = data.So; - -            var indexes = []; -            var CO = isNaN(calculateAQI("Co", data.Co)) ? 0 : calculateAQI("Co", data.Co); -            var SO = isNaN(calculateAQI("So", data.So)) ? 0 : calculateAQI("So", data.So); -            var NO = isNaN(calculateAQI("No", data.No)) ? 0 : calculateAQI("No", data.No); -            indexes.push(CO); -            indexes.push(NO); -            indexes.push(SO); - - -            var max = arrayMax(indexes); - -            document.querySelector("#aq").innerHTML = `The current air quality index is <strong>${max}</strong>`; - -        }) -        .catch(function(error) { -            console.log(error); -        }); - - - - -} - -function drawChart() { - -} - -setInterval(update, 10000); - - - - - - - - - - - - - diff --git a/web/robots.txt b/web/robots.txt deleted file mode 100644 index 4665fca..0000000 --- a/web/robots.txt +++ /dev/null @@ -1,5 +0,0 @@ -# www.robotstxt.org/ -# www.google.com/support/webmasters/bin/answer.py?hl=en&answer=156449 - -User-agent: * -Disallow: |