Blame view

sources/3rdparty/kriswallsmith/assetic/tests/bootstrap.php 554 Bytes
6d9380f96   Cédric Dupont   Update sources OC...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  <?php
  
  /*
   * This file is part of the Assetic package, an OpenSky project.
   *
   * (c) 2010-2014 OpenSky Project Inc
   *
   * For the full copyright and license information, please view the LICENSE
   * file that was distributed with this source code.
   */
  
  if (!$loader = @include __DIR__.'/../vendor/autoload.php') {
      die('You must set up the project dependencies, run the following commands:'.PHP_EOL.
          'curl -s http://getcomposer.org/installer | php'.PHP_EOL.
          'php composer.phar install'.PHP_EOL);
  }
  
  $loader->add('Assetic\Test', __DIR__);