added license and phar builder

This commit is contained in:
everzet
2012-05-06 21:53:36 +02:00
parent d55f44cd7e
commit 5d16f4e8a0
3 changed files with 93 additions and 0 deletions

21
init.php Normal file
View File

@@ -0,0 +1,21 @@
<?php
/*
* This file is part of the Behat\MinkExtension
*
* (c) Konstantin Kudryashov <ever.zet@gmail.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
require_once __DIR__.'/src/Behat/MinkExtension/Compiler/SelectorsPass.php';
require_once __DIR__.'/src/Behat/MinkExtension/Compiler/SessionsPass.php';
require_once __DIR__.'/src/Behat/MinkExtension/Context/MinkAwareContextInterface.php';
require_once __DIR__.'/src/Behat/MinkExtension/Context/MinkAwareContextInitializer.php';
require_once __DIR__.'/src/Behat/MinkExtension/Context/RawMinkContext.php';
require_once __DIR__.'/src/Behat/MinkExtension/Context/MinkContext.php';
require_once __DIR__.'/src/Behat/MinkExtension/Configuration.php';
require_once __DIR__.'/src/Behat/MinkExtension/Extension.php';
return new Behat\MinkExtension\Extension;