├── .gitignore ├── vendor ├── bin │ └── phpunit ├── phpunit │ ├── php-timer │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── ChangeLog.markdown │ │ ├── package-composer.json │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ └── phpmd.xml │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ └── README.markdown │ ├── phpunit │ │ ├── .gitattributes │ │ ├── Tests │ │ │ ├── _files │ │ │ │ ├── bar.xml │ │ │ │ ├── foo.xml │ │ │ │ ├── expectedFileFormat.txt │ │ │ │ ├── JsonData │ │ │ │ │ ├── simpleObject.js │ │ │ │ │ ├── simpleObject2.js │ │ │ │ │ └── arrayObject.js │ │ │ │ ├── NoTestCaseClass.php │ │ │ │ ├── NotVoidTestCase.php │ │ │ │ ├── EmptyTestCaseTest.php │ │ │ │ ├── NonStatic.php │ │ │ │ ├── Success.php │ │ │ │ ├── NoTestCases.php │ │ │ │ ├── NothingTest.php │ │ │ │ ├── AbstractTest.php │ │ │ │ ├── MockRunner.php │ │ │ │ ├── NoArgTestCaseTest.php │ │ │ │ ├── Error.php │ │ │ │ ├── Failure.php │ │ │ │ ├── ThrowNoExceptionTestCase.php │ │ │ │ ├── Struct.php │ │ │ │ ├── ConcreteTest.php │ │ │ │ ├── InheritedTestCase.php │ │ │ │ ├── OverrideTestCase.php │ │ │ │ ├── ThrowExceptionTestCase.php │ │ │ │ ├── ConcreteTest.my.php │ │ │ │ ├── FatalTest.php │ │ │ │ ├── IncompleteTest.php │ │ │ │ ├── WasRun.php │ │ │ │ ├── OneTestCase.php │ │ │ │ ├── NotPublicTestCase.php │ │ │ │ ├── SampleClass.php │ │ │ │ ├── ChangeCurrentWorkingDirectoryTest.php │ │ │ │ ├── Calculator.php │ │ │ │ ├── DependencySuccessTest.php │ │ │ │ ├── DependencyFailureTest.php │ │ │ │ ├── DependencyTestSuite.php │ │ │ │ ├── Singleton.php │ │ │ │ ├── RequirementsClassDocBlockTest.php │ │ │ │ ├── DataProviderTest.php │ │ │ │ ├── MultiDependencyTest.php │ │ │ │ ├── DoubleTestCase.php │ │ │ │ ├── structureWrongNumberOfNodes.xml │ │ │ │ ├── StackTest.php │ │ │ │ ├── OutputTestCase.php │ │ │ │ ├── TestIterator.php │ │ │ │ ├── structureWrongNumberOfAttributes.xml │ │ │ │ ├── structureAttributesAreSameButValuesAreNot.xml │ │ │ │ ├── ExceptionInTest.php │ │ │ │ ├── ExceptionInSetUpTest.php │ │ │ │ ├── structureExpected.xml │ │ │ │ ├── ExceptionInTearDownTest.php │ │ │ │ ├── ExceptionStack.php │ │ │ │ ├── ExceptionInAssertPreConditionsTest.php │ │ │ │ ├── structureIsSameButDataIsNot.xml │ │ │ │ ├── ExceptionInAssertPostConditionsTest.php │ │ │ │ ├── structureIgnoreTextNodes.xml │ │ │ │ ├── ClassWithNonPublicAttributes.php │ │ │ │ ├── ExceptionNamespaceTest.php │ │ │ │ ├── TemplateMethodsTest.php │ │ │ │ └── SelectorAssertionsFixture.html │ │ │ ├── Regression │ │ │ │ ├── 523 │ │ │ │ │ └── Issue523Test.php │ │ │ │ ├── 578 │ │ │ │ │ └── Issue578Test.php │ │ │ │ ├── 684 │ │ │ │ │ └── Issue684Test.php │ │ │ │ ├── 783 │ │ │ │ │ ├── OneTest.php │ │ │ │ │ ├── TwoTest.php │ │ │ │ │ ├── ParentSuite.php │ │ │ │ │ └── ChildSuite.php │ │ │ │ ├── 1021 │ │ │ │ │ └── Issue1021Test.php │ │ │ │ ├── GitHub │ │ │ │ │ ├── 74 │ │ │ │ │ │ ├── NewException.php │ │ │ │ │ │ └── Issue74Test.php │ │ │ │ │ ├── 244 │ │ │ │ │ │ └── Issue244Test.php │ │ │ │ │ ├── 322 │ │ │ │ │ │ ├── phpunit322.xml │ │ │ │ │ │ └── Issue322Test.php │ │ │ │ │ ├── 433 │ │ │ │ │ │ └── Issue433Test.php │ │ │ │ │ ├── 445 │ │ │ │ │ │ └── Issue445Test.php │ │ │ │ │ ├── 503 │ │ │ │ │ │ └── Issue503Test.php │ │ │ │ │ ├── 581 │ │ │ │ │ │ └── Issue581Test.php │ │ │ │ │ ├── 433.phpt │ │ │ │ │ ├── 445.phpt │ │ │ │ │ ├── 322.phpt │ │ │ │ │ ├── 74.phpt │ │ │ │ │ ├── 503.phpt │ │ │ │ │ ├── 581.phpt │ │ │ │ │ └── 244.phpt │ │ │ │ ├── 1021.phpt │ │ │ │ ├── 523.phpt │ │ │ │ ├── 783.phpt │ │ │ │ ├── 684.phpt │ │ │ │ └── 578.phpt │ │ │ └── TextUI │ │ │ │ ├── fatal.phpt │ │ │ │ ├── dependencies2.phpt │ │ │ │ ├── default.phpt │ │ │ │ ├── concrete-test-class.phpt │ │ │ │ ├── dataprovider-testdox.phpt │ │ │ │ ├── test-suffix-single.phpt │ │ │ │ ├── dependencies3.phpt │ │ │ │ ├── test-suffix-multiple.phpt │ │ │ │ ├── dependencies2-isolation.phpt │ │ │ │ ├── default-isolation.phpt │ │ │ │ ├── testdox.phpt │ │ │ │ ├── strict.phpt │ │ │ │ ├── dependencies3-isolation.phpt │ │ │ │ ├── filter-class.phpt │ │ │ │ ├── filter-no-results.phpt │ │ │ │ ├── group.phpt │ │ │ │ ├── strict-incomplete.phpt │ │ │ │ ├── tap.phpt │ │ │ │ ├── filter-method.phpt │ │ │ │ ├── exclude-group.phpt │ │ │ │ ├── abstract-test-class.phpt │ │ │ │ ├── list-groups.phpt │ │ │ │ ├── empty-testcase.phpt │ │ │ │ ├── strict-isolation.phpt │ │ │ │ ├── filter-class-isolation.phpt │ │ │ │ ├── group-isolation.phpt │ │ │ │ ├── filter-method-isolation.phpt │ │ │ │ ├── exclude-group-isolation.phpt │ │ │ │ ├── testdox-text.phpt │ │ │ │ ├── debug.phpt │ │ │ │ ├── testdox-html.phpt │ │ │ │ ├── log-tap.phpt │ │ │ │ ├── fatal-isolation.phpt │ │ │ │ ├── dependencies.phpt │ │ │ │ ├── exception-stack.phpt │ │ │ │ ├── dependencies-isolation.phpt │ │ │ │ └── log-xml.phpt │ │ ├── build │ │ │ ├── dependencies │ │ │ │ ├── Yaml-2.1.2.tgz │ │ │ │ ├── DbUnit-1.2.1.tgz │ │ │ │ ├── PHP_Timer-1.0.4.tgz │ │ │ │ ├── PHP_Invoker-1.1.2.tgz │ │ │ │ ├── File_Iterator-1.3.3.tgz │ │ │ │ ├── Text_Template-1.1.3.tgz │ │ │ │ ├── PHPUnit_Selenium-1.2.9.tgz │ │ │ │ ├── PHP_CodeCoverage-1.2.6.tgz │ │ │ │ ├── PHP_TokenStream-1.1.5.tgz │ │ │ │ └── PHPUnit_MockObject-1.2.1.tgz │ │ │ ├── phar-autoload.php.in │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ └── phpmd.xml │ │ ├── .gitignore │ │ ├── phpdox.xml.dist │ │ ├── PHPUnit │ │ │ └── Framework │ │ │ │ └── Process │ │ │ │ └── TestCaseMethod.tpl.dist │ │ └── LICENSE │ ├── php-code-coverage │ │ ├── .gitattributes │ │ ├── Tests │ │ │ └── _files │ │ │ │ ├── CoveredFunction.php │ │ │ │ ├── source_without_ignore.php │ │ │ │ ├── source_with_oneline_annotations.php │ │ │ │ ├── CoverageNoneTest.php │ │ │ │ ├── CoverageFunctionTest.php │ │ │ │ ├── CoverageClassTest.php │ │ │ │ ├── source_without_namespace.php │ │ │ │ ├── CoveragePrivateTest.php │ │ │ │ ├── CoveragePublicTest.php │ │ │ │ ├── CoverageMethodTest.php │ │ │ │ ├── CoverageNotPublicTest.php │ │ │ │ ├── CoverageNotPrivateTest.php │ │ │ │ ├── CoverageProtectedTest.php │ │ │ │ ├── CoverageClassExtendedTest.php │ │ │ │ ├── CoverageNotProtectedTest.php │ │ │ │ ├── NamespaceCoverageClassTest.php │ │ │ │ ├── CoverageMethodOneLineAnnotationTest.php │ │ │ │ ├── NamespaceCoveragePublicTest.php │ │ │ │ ├── source_with_namespace.php │ │ │ │ ├── CoverageNothingTest.php │ │ │ │ ├── NamespaceCoverageMethodTest.php │ │ │ │ ├── NamespaceCoverageNotPublicTest.php │ │ │ │ ├── NamespaceCoveragePrivateTest.php │ │ │ │ ├── NamespaceCoverageNotPrivateTest.php │ │ │ │ ├── NamespaceCoverageProtectedTest.php │ │ │ │ ├── NamespaceCoverageClassExtendedTest.php │ │ │ │ ├── NamespaceCoverageNotProtectedTest.php │ │ │ │ ├── NamespaceCoverageCoversClassPublicTest.php │ │ │ │ ├── CoverageTwoDefaultClassAnnotations.php │ │ │ │ ├── NotExistingCoveredElementTest.php │ │ │ │ ├── source_with_ignore.php │ │ │ │ ├── NamespaceCoverageCoversClassTest.php │ │ │ │ ├── CoveredClass.php │ │ │ │ ├── BankAccount.php │ │ │ │ ├── NamespaceCoveredClass.php │ │ │ │ └── ignored-lines-clover.xml │ │ ├── .gitignore │ │ ├── scripts │ │ │ ├── auto_append.php │ │ │ └── auto_prepend.php │ │ ├── PHP │ │ │ └── CodeCoverage │ │ │ │ └── Report │ │ │ │ └── HTML │ │ │ │ └── Renderer │ │ │ │ └── Template │ │ │ │ ├── coverage_bar.html.dist │ │ │ │ ├── img │ │ │ │ ├── glyphicons-halflings.png │ │ │ │ └── glyphicons-halflings-white.png │ │ │ │ ├── method_item.html.dist │ │ │ │ ├── directory_item.html.dist │ │ │ │ ├── file_item.html.dist │ │ │ │ └── css │ │ │ │ └── style.css │ │ ├── CONTRIBUTING.md │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ └── phpmd.xml │ │ ├── phpunit.xml.dist │ │ └── composer.json │ ├── php-file-iterator │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── package-composer.json │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ └── phpmd.xml │ │ ├── ChangeLog.markdown │ │ ├── composer.json │ │ └── README.markdown │ ├── php-text-template │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── ChangeLog.markdown │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ └── phpmd.xml │ │ ├── composer.json │ │ └── README.markdown │ ├── php-token-stream │ │ ├── .gitattributes │ │ ├── Tests │ │ │ └── _files │ │ │ │ ├── issue19.php │ │ │ │ ├── classInNamespace.php │ │ │ │ ├── classInScopedNamespace.php │ │ │ │ ├── source2.php │ │ │ │ ├── classExtendsNamespacedClass.php │ │ │ │ ├── multipleNamespacesWithOneClassUsingBraces.php │ │ │ │ ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php │ │ │ │ ├── source3.php │ │ │ │ ├── source.php │ │ │ │ └── source4.php │ │ ├── .gitignore │ │ ├── package-composer.json │ │ ├── build │ │ │ ├── PHPCS │ │ │ │ ├── Sniffs │ │ │ │ │ ├── ControlStructures │ │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ │ └── Whitespace │ │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ │ └── ruleset.xml │ │ │ └── phpmd.xml │ │ ├── ChangeLog.markdown │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ └── README.markdown │ └── phpunit-mock-objects │ │ ├── .gitattributes │ │ ├── Tests │ │ ├── _files │ │ │ ├── AnInterface.php │ │ │ ├── AbstractMockTestClass.php │ │ │ ├── FunctionCallback.php │ │ │ ├── SomeClass.php │ │ │ ├── StaticMockTestClass.php │ │ │ ├── PartialMockTestClass.php │ │ │ ├── MethodCallback.php │ │ │ └── Mockable.php │ │ └── MockObject │ │ │ ├── wsdl_class_partial.phpt │ │ │ ├── wsdl_class.phpt │ │ │ └── wsdl_class_namespace.phpt │ │ ├── PHPUnit │ │ └── Framework │ │ │ └── MockObject │ │ │ └── Generator │ │ │ ├── trait_class.tpl.dist │ │ │ ├── wsdl_method.tpl.dist │ │ │ ├── mocked_clone.tpl.dist │ │ │ ├── unmocked_clone.tpl.dist │ │ │ ├── wsdl_class.tpl.dist │ │ │ ├── mocked_object_method.tpl.dist │ │ │ └── mocked_static_method.tpl.dist │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── build │ │ ├── PHPCS │ │ │ ├── Sniffs │ │ │ │ ├── ControlStructures │ │ │ │ │ └── ControlSignatureSniff.php │ │ │ │ └── Whitespace │ │ │ │ │ └── ConcatenationSpacingSniff.php │ │ │ └── ruleset.xml │ │ └── phpmd.xml │ │ ├── ChangeLog.markdown │ │ ├── composer.json │ │ └── phpunit.xml.dist ├── symfony │ └── yaml │ │ └── Symfony │ │ └── Component │ │ └── Yaml │ │ ├── .gitattributes │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── Exception │ │ ├── ExceptionInterface.php │ │ └── DumpException.php │ │ ├── composer.json │ │ └── LICENSE ├── autoload.php └── composer │ ├── autoload_namespaces.php │ ├── include_paths.php │ └── autoload_real.php ├── composer.json ├── archive ├── jquery.spellchecker-0.1.0.zip ├── jquery.spellchecker-0.2.0.zip ├── jquery.spellchecker-0.2.1.zip ├── jquery.spellchecker-0.2.2.zip ├── jquery.spellchecker-0.2.3.zip └── jquery.spellchecker-0.2.4.zip ├── run_tests.sh ├── src ├── apache │ └── jquery.spellchecker.conf ├── webservices │ └── php │ │ ├── SpellChecker.php │ │ └── SpellChecker │ │ ├── Driver │ │ ├── Pspell.php │ │ └── Enchant.php │ │ └── Request.php └── js │ └── libs │ └── jasmine │ └── MIT.LICENSE ├── package.json ├── CONTRIBUTING.md ├── dist └── webservices │ └── php │ ├── SpellChecker.php │ └── SpellChecker │ ├── Driver │ ├── Pspell.php │ └── Enchant.php │ └── Request.php ├── jquery.spellchecker.json └── LICENSE-MIT /.gitignore: -------------------------------------------------------------------------------- 1 | _SpecRunner.html 2 | composer.lock -------------------------------------------------------------------------------- /vendor/bin/phpunit: -------------------------------------------------------------------------------- 1 | ../phpunit/phpunit/composer/bin/phpunit -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/bar.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/foo.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-file-iterator/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-text-template/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/expectedFileFormat.txt: -------------------------------------------------------------------------------- 1 | FOO 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/JsonData/simpleObject.js: -------------------------------------------------------------------------------- 1 | {"Mascott":"Tux"} -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/JsonData/simpleObject2.js: -------------------------------------------------------------------------------- 1 | {"Mascott":"Tux"} -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/Tests/_files/issue19.php: -------------------------------------------------------------------------------- 1 | =5.3.0", 4 | "phpunit/phpunit": "3.7.*" 5 | } 6 | } -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/Tests/_files/CoveredFunction.php: -------------------------------------------------------------------------------- 1 | stop(); 3 | 4 | $writer = new PHP_CodeCoverage_Report_HTML; 5 | $writer->process($coverage, '/tmp/coverage'); 6 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/Tests/_files/source2.php: -------------------------------------------------------------------------------- 1 | fail(); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/ThrowNoExceptionTestCase.php: -------------------------------------------------------------------------------- 1 | var = $var; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/apache/jquery.spellchecker.conf: -------------------------------------------------------------------------------- 1 | 2 | DocumentRoot /home/richard/Projects/jquery-spellchecker 3 | ServerName jquery-spellchecker 4 | 5 | Header set Access-Control-Allow-Origin * 6 | 7 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/ConcreteTest.php: -------------------------------------------------------------------------------- 1 | __phpunit_invocationMocker = clone $this->__phpunit_getInvocationMocker(); 4 | } 5 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/ConcreteTest.my.php: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/IncompleteTest.php: -------------------------------------------------------------------------------- 1 | markTestIncomplete('Test incomplete'); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/WasRun.php: -------------------------------------------------------------------------------- 1 | wasRun = TRUE; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/Tests/_files/source_with_oneline_annotations.php: -------------------------------------------------------------------------------- 1 | __phpunit_invocationMocker = clone $this->__phpunit_getInvocationMocker(); 4 | parent::__clone(); 5 | } 6 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/PHP/CodeCoverage/Report/HTML/Renderer/Template/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badsyntax/jquery-spellchecker/HEAD/vendor/phpunit/php-code-coverage/PHP/CodeCoverage/Report/HTML/Renderer/Template/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/NotPublicTestCase.php: -------------------------------------------------------------------------------- 1 | = 0.6.0" 6 | }, 7 | "scripts": { 8 | "test": "grunt qunit" 9 | }, 10 | "devDependencies": { 11 | "grunt": "~0.3.16" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/Tests/_files/CoverageNoneTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- 1 | $vendorDir . '/symfony/yaml/', 10 | ); 11 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/PHP/CodeCoverage/Report/HTML/Renderer/Template/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/badsyntax/jquery-spellchecker/HEAD/vendor/phpunit/php-code-coverage/PHP/CodeCoverage/Report/HTML/Renderer/Template/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/Regression/GitHub/322/phpunit322.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Test.php 4 | 5 | 6 | 7 | 8 | one 9 | 10 | 11 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/Tests/_files/multipleNamespacesWithOneClassUsingNonBraceSyntax.php: -------------------------------------------------------------------------------- 1 | a = $a; 11 | $this->b = $b; 12 | $this->c = $c; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/ChangeCurrentWorkingDirectoryTest.php: -------------------------------------------------------------------------------- 1 | assertTrue(TRUE); 8 | } 9 | 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/Regression/GitHub/503/Issue503Test.php: -------------------------------------------------------------------------------- 1 | assertSame( 7 | "foo\n", 8 | "foo\r\n" 9 | ); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/.gitignore: -------------------------------------------------------------------------------- 1 | build/api 2 | build/code-browser 3 | build/coverage 4 | build/logs 5 | build/pdepend 6 | build/phar 7 | build/phpdox 8 | build/*.phar 9 | Tests/TextUI/*.diff 10 | Tests/TextUI/*.exp 11 | Tests/TextUI/*.log 12 | Tests/TextUI/*.out 13 | Tests/TextUI/*.php 14 | phpunit.xml 15 | cache.properties 16 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/Regression/GitHub/74/Issue74Test.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/Tests/_files/source_without_namespace.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/Tests/_files/CoveragePublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/Regression/783/ParentSuite.php: -------------------------------------------------------------------------------- 1 | addTest(ChildSuite::suite()); 10 | 11 | return $suite; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/Tests/_files/CoverageMethodTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/Tests/_files/CoverageNotPublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/Tests/_files/CoverageNotPrivateTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/Tests/_files/CoverageProtectedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/Regression/GitHub/322/Issue322Test.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/Tests/_files/CoverageNotProtectedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/Tests/_files/NamespaceCoverageClassTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/Tests/_files/CoverageMethodOneLineAnnotationTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 10 | } 11 | } 12 | 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/Tests/_files/NamespaceCoveragePublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/Tests/_files/source_with_namespace.php: -------------------------------------------------------------------------------- 1 | filter(); 6 | 7 | $filter->addFileToBlacklist(__FILE__); 8 | $filter->addFileToBlacklist(dirname(__FILE__) . '/auto_append.php'); 9 | 10 | $coverage->start($_SERVER['SCRIPT_FILENAME']); 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/Regression/523/Issue523Test.php: -------------------------------------------------------------------------------- 1 | assertAttributeEquals('foo', 'field', new Issue523()); 7 | } 8 | }; 9 | 10 | class Issue523 extends ArrayIterator 11 | { 12 | protected $field = 'foo'; 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/Tests/_files/CoverageNothingTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/Tests/_files/NamespaceCoverageMethodTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/Tests/_files/NamespaceCoverageNotPublicTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/Tests/_files/NamespaceCoveragePrivateTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/Tests/_files/NamespaceCoverageNotPrivateTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/Tests/_files/NamespaceCoverageProtectedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Pull Requests for bug fixes should be made against the current release branch (1.2). 2 | 3 | Pull Requests for new features should be made against master. 4 | 5 | For further notes please refer to [https://github.com/sebastianbergmann/phpunit/blob/master/CONTRIBUTING.md](https://github.com/sebastianbergmann/phpunit/blob/master/CONTRIBUTING.md) 6 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/Tests/_files/NamespaceCoverageClassExtendedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/Tests/_files/NamespaceCoverageNotProtectedTest.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | public function testSomething() 8 | { 9 | $o = new Foo\CoveredClass; 10 | $o->publicMethod(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Pull Requests for bug fixes should be made against the current release branch (1.2). 2 | 3 | Pull Requests for new features should be made against master. 4 | 5 | For further notes please refer to [https://github.com/sebastianbergmann/phpunit/blob/master/CONTRIBUTING.md](https://github.com/sebastianbergmann/phpunit/blob/master/CONTRIBUTING.md) 6 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/Regression/GitHub/581/Issue581Test.php: -------------------------------------------------------------------------------- 1 | assertEquals( 6 | (object)array(1,2,"Test\r\n",4,5,6,7,8), 7 | (object)array(1,2,"Test\r\n",4,1,6,7,8) 8 | ); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Symfony/Component/Yaml/README.md: -------------------------------------------------------------------------------- 1 | Yaml Component 2 | ============== 3 | 4 | YAML implements most of the YAML 1.2 specification. 5 | 6 | use Symfony\Component\Yaml\Yaml; 7 | 8 | $array = Yaml::parse($file); 9 | 10 | print Yaml::dump($array); 11 | 12 | Resources 13 | --------- 14 | 15 | You can run the unit tests with the following command: 16 | 17 | phpunit 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/Tests/_files/PartialMockTestClass.php: -------------------------------------------------------------------------------- 1 | constructorCalled = TRUE; 9 | } 10 | 11 | public function doSomething() 12 | { 13 | } 14 | 15 | public function doAnotherThing() 16 | { 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/Tests/_files/source3.php: -------------------------------------------------------------------------------- 1 | addTestSuite('OneTest'); 11 | $suite->addTestSuite('TwoTest'); 12 | 13 | return $suite; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/Tests/_files/NamespaceCoverageCoversClassPublicTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 14 | } 15 | } 16 | 17 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/DependencySuccessTest.php: -------------------------------------------------------------------------------- 1 | fail(); 7 | } 8 | 9 | /** 10 | * @depends testOne 11 | */ 12 | public function testTwo() 13 | { 14 | } 15 | 16 | /** 17 | * @depends testTwo 18 | */ 19 | public function testThree() 20 | { 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/phpdox.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/Tests/_files/CoverageTwoDefaultClassAnnotations.php: -------------------------------------------------------------------------------- 1 | 12 | */ 13 | public function testSomething() 14 | { 15 | $o = new Foo\CoveredClass; 16 | $o->publicMethod(); 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/DependencyTestSuite.php: -------------------------------------------------------------------------------- 1 | addTestSuite('DependencySuccessTest'); 12 | $suite->addTestSuite('DependencyFailureTest'); 13 | 14 | return $suite; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/Singleton.php: -------------------------------------------------------------------------------- 1 | assertTrue($data); 10 | } 11 | 12 | /** 13 | * @depends testSomething 14 | */ 15 | public function testSomethingElse() 16 | { 17 | } 18 | 19 | public function provider() 20 | { 21 | return array(array(TRUE)); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/RequirementsClassDocBlockTest.php: -------------------------------------------------------------------------------- 1 | assertEquals($c, $a + $b); 10 | } 11 | 12 | public static function providerMethod() 13 | { 14 | return array( 15 | array(0, 0, 0), 16 | array(0, 1, 1), 17 | array(1, 1, 3), 18 | array(1, 0, 1) 19 | ); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/MultiDependencyTest.php: -------------------------------------------------------------------------------- 1 | assertEquals('foo', $a); 21 | $this->assertEquals('bar', $b); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | 3 | ## Important notes 4 | Please don't edit files in the `dist` subdirectory as they are generated via grunt. You'll find source code in the `src` subdirectory! 5 | 6 | ### Code style 7 | Regarding code style like indentation and whitespace, **follow the conventions you see used in the source already.** 8 | 9 | ## Submitting pull requests 10 | 11 | 1. Fork the project 12 | 1. Add changes to the 'develop' branch 13 | 1. Update the documentation to reflect any changes. 14 | 1. Push to your fork and submit a pull request. 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/ChangeLog.markdown: -------------------------------------------------------------------------------- 1 | PHP_Timer 1.0 2 | ============= 3 | 4 | This is the list of changes for the PHP_Timer 1.0 release series. 5 | 6 | PHP_Timer 1.0.4 7 | --------------- 8 | 9 | * No changes. 10 | 11 | PHP_Timer 1.0.3 12 | --------------- 13 | 14 | * No changes. 15 | 16 | PHP_Timer 1.0.2 17 | --------------- 18 | 19 | * `$_SERVER['REQUEST_TIME_FLOAT']` is used when available. 20 | 21 | PHP_Timer 1.0.1 22 | --------------- 23 | 24 | * No changes. 25 | 26 | PHP_Timer 1.0.0 27 | --------------- 28 | 29 | * Initial release. 30 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/build/phar-autoload.php.in: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env php 2 | 20 | */ 21 | public function testThree() 22 | { 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/package-composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "phpunit/php-timer", 3 | "keywords": [ "timer" ], 4 | "license": "BSD-3-Clause", 5 | "homepage": "http://www.phpunit.de/", 6 | "dependency_map": { }, 7 | "support": { 8 | "issues": "https://github.com/sebastianbergmann/php-timer/issues", 9 | "irc": "irc://irc.freenode.net/phpunit" 10 | }, 11 | "autoload": { 12 | "classmap": [ "PHP/" ] 13 | }, 14 | "include_path": [ 15 | "" 16 | ], 17 | "version": false, 18 | "time": false 19 | } -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/TextUI/fatal.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit FatalTest ../_files/FatalTest.php 3 | --FILE-- 4 | 13 | --EXPECTF-- 14 | PHPUnit %s by Sebastian Bergmann. 15 | 16 | 17 | Fatal error: Call to undefined function non_existing_function() in %s 18 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/Regression/1021.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | #1021: Depending on a test that uses a data provider does not work 3 | --FILE-- 4 | 12 | --EXPECTF-- 13 | PHPUnit %s by Sebastian Bergmann. 14 | 15 | .. 16 | 17 | Time: %i %s, Memory: %sMb 18 | 19 | OK (2 tests, 1 assertion) 20 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/Regression/523.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | #523: assertAttributeEquals does not work with classes extending ArrayIterator 3 | --FILE-- 4 | 12 | --EXPECTF-- 13 | PHPUnit %s by Sebastian Bergmann. 14 | 15 | . 16 | 17 | Time: %i %s, Memory: %sMb 18 | 19 | OK (1 test, 1 assertion) 20 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/package-composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "phpunit/php-token-stream", 3 | "keywords": [ "tokenizer" ], 4 | "license": "BSD-3-Clause", 5 | "homepage": "http://www.phpunit.de/", 6 | "dependency_map": { }, 7 | "support": { 8 | "issues": "https://github.com/sebastianbergmann/php-token-stream/issues", 9 | "irc": "irc://irc.freenode.net/phpunit" 10 | }, 11 | "autoload": { 12 | "classmap": [ "PHP/" ] 13 | }, 14 | "include_path": [ 15 | "" 16 | ], 17 | "version": false, 18 | "time": false 19 | } -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/Regression/GitHub/433/Issue433Test.php: -------------------------------------------------------------------------------- 1 | expectOutputString('test'); 7 | print 'test'; 8 | } 9 | 10 | public function testOutputWithExpectationAfter() 11 | { 12 | print 'test'; 13 | $this->expectOutputString('test'); 14 | } 15 | 16 | public function testNotMatchingOutput() 17 | { 18 | print 'bar'; 19 | $this->expectOutputString('foo'); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/Regression/GitHub/445/Issue445Test.php: -------------------------------------------------------------------------------- 1 | expectOutputString('test'); 7 | print 'test'; 8 | } 9 | 10 | public function testOutputWithExpectationAfter() 11 | { 12 | print 'test'; 13 | $this->expectOutputString('test'); 14 | } 15 | 16 | public function testNotMatchingOutput() 17 | { 18 | print 'bar'; 19 | $this->expectOutputString('foo'); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/composer/include_paths.php: -------------------------------------------------------------------------------- 1 | setIncludePathLookup(true); 17 | $classLoader->register(); 18 | 19 | new \SpellChecker\Request(); -------------------------------------------------------------------------------- /src/webservices/php/SpellChecker.php: -------------------------------------------------------------------------------- 1 | setIncludePathLookup(true); 17 | $classLoader->register(); 18 | 19 | new \SpellChecker\Request(); -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/Tests/_files/source.php: -------------------------------------------------------------------------------- 1 | 14 | --EXPECTF-- 15 | PHPUnit %s by Sebastian Bergmann. 16 | 17 | .. 18 | 19 | Time: %i %s, Memory: %sMb 20 | 21 | OK (2 tests, 5 assertions) 22 | 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/TextUI/default.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit BankAccountTest ../_files/BankAccountTest.php 3 | --FILE-- 4 | 14 | --EXPECTF-- 15 | PHPUnit %s by Sebastian Bergmann. 16 | 17 | ... 18 | 19 | Time: %i %s, Memory: %sMb 20 | 21 | OK (3 tests, 3 assertions) 22 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Symfony/Component/Yaml/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Yaml\Exception; 13 | 14 | /** 15 | * Exception interface for all exceptions thrown by the component. 16 | * 17 | * @author Fabien Potencier 18 | * 19 | * @api 20 | */ 21 | interface ExceptionInterface 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/Tests/_files/source_with_ignore.php: -------------------------------------------------------------------------------- 1 | 14 | --EXPECTF-- 15 | PHPUnit %s by Sebastian Bergmann. 16 | 17 | .. 18 | 19 | Time: %i %s, Memory: %sMb 20 | 21 | OK (2 tests, 0 assertions) 22 | 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/Regression/783.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | #783: Tests getting executed twice when using multiple groups 3 | --FILE-- 4 | 14 | --EXPECTF-- 15 | PHPUnit %s by Sebastian Bergmann. 16 | 17 | .. 18 | 19 | Time: %i %s, Memory: %sMb 20 | 21 | OK (2 tests, 0 assertions) 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/TextUI/dataprovider-testdox.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --testdox DataProviderTest ../_files/DataProviderTest.php 3 | --FILE-- 4 | 15 | --EXPECTF-- 16 | PHPUnit %s by Sebastian Bergmann. 17 | 18 | DataProvider 19 | [ ] Add 20 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/TextUI/test-suffix-single.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --test-suffix .test.php ../_files/ 3 | --FILE-- 4 | 15 | --EXPECTF-- 16 | PHPUnit %s by Sebastian Bergmann. 17 | 18 | ... 19 | 20 | Time: %i %s, Memory: %sMb 21 | 22 | OK (3 tests, 3 assertions) 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/TextUI/dependencies3.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit MultiDependencyTest ../_files/MultiDependencyTest.php 3 | --FILE-- 4 | 14 | --EXPECTF-- 15 | PHPUnit %s by Sebastian Bergmann. 16 | 17 | ... 18 | 19 | Time: %i %s, Memory: %sMb 20 | 21 | OK (3 tests, 2 assertions) 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/DoubleTestCase.php: -------------------------------------------------------------------------------- 1 | testCase = $testCase; 9 | } 10 | 11 | public function count() 12 | { 13 | return 2; 14 | } 15 | 16 | public function run(PHPUnit_Framework_TestResult $result = NULL) 17 | { 18 | $result->startTest($this); 19 | 20 | $this->testCase->runBare(); 21 | $this->testCase->runBare(); 22 | 23 | $result->endTest($this, 0); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Symfony/Component/Yaml/Exception/DumpException.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Yaml\Exception; 13 | 14 | /** 15 | * Exception class thrown when an error occurs during dumping. 16 | * 17 | * @author Fabien Potencier 18 | * 19 | * @api 20 | */ 21 | class DumpException extends \RuntimeException implements ExceptionInterface 22 | { 23 | } 24 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/TextUI/test-suffix-multiple.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --test-suffix .test.php,.my.php ../_files/ 3 | --FILE-- 4 | 15 | --EXPECTF-- 16 | PHPUnit %s by Sebastian Bergmann. 17 | 18 | ..... 19 | 20 | Time: %i %s, Memory: %sMb 21 | 22 | OK (5 tests, 3 assertions) 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/structureWrongNumberOfNodes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/Tests/_files/NamespaceCoverageCoversClassTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 19 | } 20 | } 21 | 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/Tests/_files/Mockable.php: -------------------------------------------------------------------------------- 1 | constructorArgs = array($arg1, $arg2); 10 | } 11 | 12 | public function mockableMethod() 13 | { 14 | // something different from NULL 15 | return TRUE; 16 | } 17 | 18 | public function anotherMockableMethod() 19 | { 20 | // something different from NULL 21 | return TRUE; 22 | } 23 | 24 | public function __clone() 25 | { 26 | $this->cloned = TRUE; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/StackTest.php: -------------------------------------------------------------------------------- 1 | assertEquals(0, count($stack)); 8 | 9 | array_push($stack, 'foo'); 10 | $this->assertEquals('foo', $stack[count($stack)-1]); 11 | $this->assertEquals(1, count($stack)); 12 | 13 | return $stack; 14 | } 15 | 16 | /** 17 | * @depends testPush 18 | */ 19 | public function testPop(array $stack) 20 | { 21 | $this->assertEquals('foo', array_pop($stack)); 22 | $this->assertEquals(0, count($stack)); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/TextUI/dependencies2-isolation.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --process-isolation StackTest ../_files/StackTest.php 3 | --FILE-- 4 | 15 | --EXPECTF-- 16 | PHPUnit %s by Sebastian Bergmann. 17 | 18 | .. 19 | 20 | Time: %i %s, Memory: %sMb 21 | 22 | OK (2 tests, 5 assertions) 23 | 24 | -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/build/PHPCS/Sniffs/ControlStructures/ControlSignatureSniff.php: -------------------------------------------------------------------------------- 1 | 15 | --EXPECTF-- 16 | PHPUnit %s by Sebastian Bergmann. 17 | 18 | ... 19 | 20 | Time: %i %s, Memory: %sMb 21 | 22 | OK (3 tests, 3 assertions) 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/TextUI/testdox.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --testdox php://stdout BankAccountTest ../_files/BankAccountTest.php 3 | --FILE-- 4 | 15 | --EXPECTF-- 16 | PHPUnit %s by Sebastian Bergmann. 17 | 18 | BankAccount 19 | [x] Balance is initially zero 20 | [x] Balance cannot become negative 21 | 22 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/Regression/684.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | #684: Unable to find test class when no test methods exists 3 | --FILE-- 4 | 12 | --EXPECTF-- 13 | PHPUnit %s by Sebastian Bergmann. 14 | 15 | F 16 | 17 | Time: %i %s, Memory: %sMb 18 | 19 | There was 1 failure: 20 | 21 | 1) Warning 22 | No tests found in class "Foo_Bar_Issue684Test". 23 | 24 | 25 | FAILURES! 26 | Tests: 1, Assertions: 0, Failures: 1. 27 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/build/PHPCS/Sniffs/ControlStructures/ControlSignatureSniff.php: -------------------------------------------------------------------------------- 1 | iniSet('error_reporting', E_ALL | E_NOTICE); 7 | trigger_error('Stack Trace Test Notice', E_NOTICE); 8 | } 9 | 10 | public function testWarningsDoublePrintStackTrace() 11 | { 12 | $this->iniSet('error_reporting', E_ALL | E_NOTICE); 13 | trigger_error('Stack Trace Test Notice', E_WARNING); 14 | } 15 | 16 | public function testUnexpectedExceptionsPrintsCorrectly() 17 | { 18 | throw new Exception('Double printed exception'); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/TextUI/strict.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --strict NothingTest ../_files/NothingTest.php 3 | --FILE-- 4 | 15 | --EXPECTF-- 16 | PHPUnit %s by Sebastian Bergmann. 17 | 18 | I 19 | 20 | Time: %i %s, Memory: %sMb 21 | 22 | OK, but incomplete or skipped tests! 23 | Tests: 1, Assertions: 0, Incomplete: 1. 24 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/build/PHPCS/Sniffs/ControlStructures/ControlSignatureSniff.php: -------------------------------------------------------------------------------- 1 | 2 | {name} 3 | {methods_bar} 4 |
{methods_tested_percent}
5 |
{methods_number}
6 | {crap} 7 | {lines_bar} 8 |
{lines_executed_percent}
9 |
{lines_number}
10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/TextUI/dependencies3-isolation.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --process-isolation MultiDependencyTest ../_files/MultiDependencyTest.php 3 | --FILE-- 4 | 15 | --EXPECTF-- 16 | PHPUnit %s by Sebastian Bergmann. 17 | 18 | ... 19 | 20 | Time: %i %s, Memory: %sMb 21 | 22 | OK (3 tests, 2 assertions) 23 | 24 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/TextUI/filter-class.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --filter BankAccountTest BankAccountTest ../_files/BankAccountTest.php 3 | --FILE-- 4 | 16 | --EXPECTF-- 17 | PHPUnit %s by Sebastian Bergmann. 18 | 19 | ... 20 | 21 | Time: %i %s, Memory: %sMb 22 | 23 | OK (3 tests, 3 assertions) 24 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/TextUI/filter-no-results.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --filter testBalanceIsInitiallyZero BankAccountTest ../_files/BankAccountTest.php 3 | --FILE-- 4 | 16 | --EXPECTF-- 17 | PHPUnit %s by Sebastian Bergmann. 18 | 19 | 20 | 21 | Time: %i %s, Memory: %sMb 22 | 23 | No tests executed! 24 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/TextUI/group.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --group balanceIsInitiallyZero BankAccountTest ../_files/BankAccountTest.php 3 | --FILE-- 4 | 16 | --EXPECTF-- 17 | PHPUnit %s by Sebastian Bergmann. 18 | 19 | . 20 | 21 | Time: %i %s, Memory: %sMb 22 | 23 | OK (1 test, 1 assertion) 24 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/TextUI/strict-incomplete.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --strict IncompleteTest ../_files/IncompleteTest.php 3 | --FILE-- 4 | 15 | --EXPECTF-- 16 | PHPUnit %s by Sebastian Bergmann. 17 | 18 | I 19 | 20 | Time: %i %s, Memory: %sMb 21 | 22 | OK, but incomplete or skipped tests! 23 | Tests: 1, Assertions: 0, Incomplete: 1. 24 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/TextUI/tap.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --tap BankAccountTest ../_files/BankAccountTest.php 3 | --FILE-- 4 | 15 | --EXPECTF-- 16 | TAP version 13 17 | ok 1 - BankAccountTest::testBalanceIsInitiallyZero 18 | ok 2 - BankAccountTest::testBalanceCannotBecomeNegative 19 | ok 3 - BankAccountTest::testBalanceCannotBecomeNegative2 20 | 1..3 21 | -------------------------------------------------------------------------------- /vendor/phpunit/php-file-iterator/ChangeLog.markdown: -------------------------------------------------------------------------------- 1 | File_Iterator 1.3 2 | ================= 3 | 4 | This is the list of changes for the File_Iterator 1.3 release series. 5 | 6 | File_Iterator 1.3.3 7 | ------------------- 8 | 9 | * No changes. 10 | 11 | File_Iterator 1.3.2 12 | ------------------- 13 | 14 | * No changes. 15 | 16 | File_Iterator 1.3.1 17 | ------------------- 18 | 19 | * Fixed infinite loop in `File_Iterator_Facade::getCommonPath()` for empty directories. 20 | 21 | File_Iterator 1.3.0 22 | ------------------- 23 | 24 | * Added `File_Iterator_Facade` for the most common use case. 25 | * Moved `File_Iterator_Factory::getFilesAsArray()` to `File_Iterator_Facade::getFilesAsArray()`. 26 | * `File_Iterator_Factory` is no longer static. 27 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/TextUI/filter-method.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --filter testBalanceIsInitiallyZero BankAccountTest ../_files/BankAccountTest.php 3 | --FILE-- 4 | 16 | --EXPECTF-- 17 | PHPUnit %s by Sebastian Bergmann. 18 | 19 | . 20 | 21 | Time: %i %s, Memory: %sMb 22 | 23 | OK (1 test, 1 assertion) 24 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/TextUI/exclude-group.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --exclude-group balanceIsInitiallyZero BankAccountTest ../_files/BankAccountTest.php 3 | --FILE-- 4 | 16 | --EXPECTF-- 17 | PHPUnit %s by Sebastian Bergmann. 18 | 19 | .. 20 | 21 | Time: %i %s, Memory: %sMb 22 | 23 | OK (2 tests, 2 assertions) 24 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/OutputTestCase.php: -------------------------------------------------------------------------------- 1 | expectOutputString('foo'); 7 | print 'foo'; 8 | } 9 | 10 | public function testExpectOutputStringFooActualBar() 11 | { 12 | $this->expectOutputString('foo'); 13 | print 'bar'; 14 | } 15 | 16 | public function testExpectOutputRegexFooActualFoo() 17 | { 18 | $this->expectOutputRegex('/foo/'); 19 | print 'foo'; 20 | } 21 | 22 | public function testExpectOutputRegexFooActualBar() 23 | { 24 | $this->expectOutputRegex('/foo/'); 25 | print 'bar'; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/build/PHPCS/Sniffs/Whitespace/ConcatenationSpacingSniff.php: -------------------------------------------------------------------------------- 1 | getTokens(); 12 | 13 | if ($tokens[($stackPtr - 1)]['code'] !== T_WHITESPACE || 14 | $tokens[($stackPtr + 1)]['code'] !== T_WHITESPACE) { 15 | 16 | $phpcsFile->addError( 17 | 'Concatenation operator must be surrounded by whitespace', 18 | $stackPtr 19 | ); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/TextUI/abstract-test-class.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit AbstractTest ../_files/AbstractTest.php 3 | --FILE-- 4 | 14 | --EXPECTF-- 15 | PHPUnit %s by Sebastian Bergmann. 16 | 17 | F 18 | 19 | Time: %i %s, Memory: %sMb 20 | 21 | There was 1 failure: 22 | 23 | 1) Warning 24 | Cannot instantiate class "AbstractTest". 25 | 26 | 27 | FAILURES! 28 | Tests: 1, Assertions: 0, Failures: 1. 29 | 30 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/TextUI/list-groups.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --list-groups BankAccountTest ../_files/BankAccountTest.php 3 | --FILE-- 4 | 15 | --EXPECTF-- 16 | PHPUnit %s by Sebastian Bergmann. 17 | 18 | Available test group(s): 19 | - Sebastian Bergmann 20 | - balanceCannotBecomeNegative 21 | - balanceIsInitiallyZero 22 | - specification 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/build/PHPCS/Sniffs/ControlStructures/ControlSignatureSniff.php: -------------------------------------------------------------------------------- 1 | getTokens(); 12 | 13 | if ($tokens[($stackPtr - 1)]['code'] !== T_WHITESPACE || 14 | $tokens[($stackPtr + 1)]['code'] !== T_WHITESPACE) { 15 | 16 | $phpcsFile->addError( 17 | 'Concatenation operator must be surrounded by whitespace', 18 | $stackPtr 19 | ); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/build/PHPCS/Sniffs/Whitespace/ConcatenationSpacingSniff.php: -------------------------------------------------------------------------------- 1 | getTokens(); 12 | 13 | if ($tokens[($stackPtr - 1)]['code'] !== T_WHITESPACE || 14 | $tokens[($stackPtr + 1)]['code'] !== T_WHITESPACE) { 15 | 16 | $phpcsFile->addError( 17 | 'Concatenation operator must be surrounded by whitespace', 18 | $stackPtr 19 | ); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpunit/php-file-iterator/build/PHPCS/Sniffs/Whitespace/ConcatenationSpacingSniff.php: -------------------------------------------------------------------------------- 1 | getTokens(); 12 | 13 | if ($tokens[($stackPtr - 1)]['code'] !== T_WHITESPACE || 14 | $tokens[($stackPtr + 1)]['code'] !== T_WHITESPACE) { 15 | 16 | $phpcsFile->addError( 17 | 'Concatenation operator must be surrounded by whitespace', 18 | $stackPtr 19 | ); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpunit/php-text-template/build/PHPCS/Sniffs/Whitespace/ConcatenationSpacingSniff.php: -------------------------------------------------------------------------------- 1 | getTokens(); 12 | 13 | if ($tokens[($stackPtr - 1)]['code'] !== T_WHITESPACE || 14 | $tokens[($stackPtr + 1)]['code'] !== T_WHITESPACE) { 15 | 16 | $phpcsFile->addError( 17 | 'Concatenation operator must be surrounded by whitespace', 18 | $stackPtr 19 | ); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/build/PHPCS/Sniffs/Whitespace/ConcatenationSpacingSniff.php: -------------------------------------------------------------------------------- 1 | getTokens(); 12 | 13 | if ($tokens[($stackPtr - 1)]['code'] !== T_WHITESPACE || 14 | $tokens[($stackPtr + 1)]['code'] !== T_WHITESPACE) { 15 | 16 | $phpcsFile->addError( 17 | 'Concatenation operator must be surrounded by whitespace', 18 | $stackPtr 19 | ); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/build/PHPCS/Sniffs/Whitespace/ConcatenationSpacingSniff.php: -------------------------------------------------------------------------------- 1 | getTokens(); 12 | 13 | if ($tokens[($stackPtr - 1)]['code'] !== T_WHITESPACE || 14 | $tokens[($stackPtr + 1)]['code'] !== T_WHITESPACE) { 15 | 16 | $phpcsFile->addError( 17 | 'Concatenation operator must be surrounded by whitespace', 18 | $stackPtr 19 | ); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/TextUI/empty-testcase.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit EmptyTestCaseTest ../_files/EmptyTestCaseTest.php 3 | --FILE-- 4 | 14 | --EXPECTF-- 15 | PHPUnit %s by Sebastian Bergmann. 16 | 17 | F 18 | 19 | Time: %i %s, Memory: %sMb 20 | 21 | There was 1 failure: 22 | 23 | 1) Warning 24 | No tests found in class "EmptyTestCaseTest". 25 | 26 | %s:%i 27 | 28 | FAILURES! 29 | Tests: 1, Assertions: 0, Failures: 1. 30 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/TestIterator.php: -------------------------------------------------------------------------------- 1 | array = $array; 10 | } 11 | 12 | public function rewind() 13 | { 14 | $this->position = 0; 15 | } 16 | 17 | public function valid() 18 | { 19 | return $this->position < count($this->array); 20 | } 21 | 22 | public function key() 23 | { 24 | return $this->position; 25 | } 26 | 27 | public function current() 28 | { 29 | return $this->array[$this->position]; 30 | } 31 | 32 | public function next() 33 | { 34 | $this->position++; 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/TextUI/strict-isolation.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --strict --process-isolation IncompleteTest ../_files/IncompleteTest.php 3 | --FILE-- 4 | 16 | --EXPECTF-- 17 | PHPUnit %s by Sebastian Bergmann. 18 | 19 | I 20 | 21 | Time: %i %s, Memory: %sMb 22 | 23 | OK, but incomplete or skipped tests! 24 | Tests: 1, Assertions: 0, Incomplete: 1. 25 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/Tests/_files/CoveredClass.php: -------------------------------------------------------------------------------- 1 | privateMethod(); 11 | } 12 | 13 | public function publicMethod() 14 | { 15 | $this->protectedMethod(); 16 | } 17 | } 18 | 19 | class CoveredClass extends CoveredParentClass 20 | { 21 | private function privateMethod() 22 | { 23 | } 24 | 25 | protected function protectedMethod() 26 | { 27 | parent::protectedMethod(); 28 | $this->privateMethod(); 29 | } 30 | 31 | public function publicMethod() 32 | { 33 | parent::publicMethod(); 34 | $this->protectedMethod(); 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/TextUI/filter-class-isolation.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --process-isolation --filter BankAccountTest BankAccountTest ../_files/BankAccountTest.php 3 | --FILE-- 4 | 17 | --EXPECTF-- 18 | PHPUnit %s by Sebastian Bergmann. 19 | 20 | ... 21 | 22 | Time: %i %s, Memory: %sMb 23 | 24 | OK (3 tests, 3 assertions) 25 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/TextUI/group-isolation.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --process-isolation --group balanceIsInitiallyZero BankAccountTest ../_files/BankAccountTest.php 3 | --FILE-- 4 | 17 | --EXPECTF-- 18 | PHPUnit %s by Sebastian Bergmann. 19 | 20 | . 21 | 22 | Time: %i %s, Memory: %sMb 23 | 24 | OK (1 test, 1 assertion) 25 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/Tests/_files/BankAccount.php: -------------------------------------------------------------------------------- 1 | balance; 9 | } 10 | 11 | protected function setBalance($balance) 12 | { 13 | if ($balance >= 0) { 14 | $this->balance = $balance; 15 | } else { 16 | throw new RuntimeException; 17 | } 18 | } 19 | 20 | public function depositMoney($balance) 21 | { 22 | $this->setBalance($this->getBalance() + $balance); 23 | 24 | return $this->getBalance(); 25 | } 26 | 27 | public function withdrawMoney($balance) 28 | { 29 | $this->setBalance($this->getBalance() - $balance); 30 | 31 | return $this->getBalance(); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/Regression/GitHub/433.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | GH-433: expectOutputString not completely working as expected 3 | --FILE-- 4 | 13 | --EXPECTF-- 14 | PHPUnit %s by Sebastian Bergmann. 15 | 16 | ..F 17 | 18 | Time: %i %s, Memory: %sMb 19 | 20 | There was 1 failure: 21 | 22 | 1) Issue433Test::testNotMatchingOutput 23 | Failed asserting that two strings are equal. 24 | --- Expected 25 | +++ Actual 26 | @@ @@ 27 | -'foo' 28 | +'bar' 29 | 30 | 31 | FAILURES! 32 | Tests: 3, Assertions: 3, Failures: 1. 33 | 34 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/PHPUnit/Framework/MockObject/Generator/mocked_object_method.tpl.dist: -------------------------------------------------------------------------------- 1 | 2 | {modifier} function {reference}{method_name}({arguments_decl}) 3 | { 4 | $arguments = array({arguments_call}); 5 | $count = func_num_args(); 6 | 7 | if ($count > {arguments_count}) { 8 | $_arguments = func_get_args(); 9 | 10 | for ($i = {arguments_count}; $i < $count; $i++) { 11 | $arguments[] = $_arguments[$i]; 12 | } 13 | } 14 | 15 | $result = $this->__phpunit_getInvocationMocker()->invoke( 16 | new PHPUnit_Framework_MockObject_Invocation_Object( 17 | '{class_name}', '{method_name}', $arguments, $this, {clone_arguments} 18 | ) 19 | ); 20 | 21 | return $result; 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/TextUI/filter-method-isolation.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --process-isolation --filter testBalanceIsInitiallyZero BankAccountTest ../_files/BankAccountTest.php 3 | --FILE-- 4 | 17 | --EXPECTF-- 18 | PHPUnit %s by Sebastian Bergmann. 19 | 20 | . 21 | 22 | Time: %i %s, Memory: %sMb 23 | 24 | OK (1 test, 1 assertion) 25 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/Tests/_files/NamespaceCoveredClass.php: -------------------------------------------------------------------------------- 1 | privateMethod(); 13 | } 14 | 15 | public function publicMethod() 16 | { 17 | $this->protectedMethod(); 18 | } 19 | } 20 | 21 | class CoveredClass extends CoveredParentClass 22 | { 23 | private function privateMethod() 24 | { 25 | } 26 | 27 | protected function protectedMethod() 28 | { 29 | parent::protectedMethod(); 30 | $this->privateMethod(); 31 | } 32 | 33 | public function publicMethod() 34 | { 35 | parent::publicMethod(); 36 | $this->protectedMethod(); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/PHPUnit/Framework/MockObject/Generator/mocked_static_method.tpl.dist: -------------------------------------------------------------------------------- 1 | 2 | {modifier} static function {reference}{method_name}({arguments_decl}) 3 | { 4 | $arguments = array({arguments_call}); 5 | $count = func_num_args(); 6 | 7 | if ($count > {arguments_count}) { 8 | $_arguments = func_get_args(); 9 | 10 | for ($i = {arguments_count}; $i < $count; $i++) { 11 | $arguments[] = $_arguments[$i]; 12 | } 13 | } 14 | 15 | $result = self::__phpunit_getStaticInvocationMocker()->invoke( 16 | new PHPUnit_Framework_MockObject_Invocation_Static( 17 | '{class_name}', '{method_name}', $arguments, {clone_arguments} 18 | ) 19 | ); 20 | 21 | return $result; 22 | } 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/TextUI/exclude-group-isolation.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --process-isolation --exclude-group balanceIsInitiallyZero BankAccountTest ../_files/BankAccountTest.php 3 | --FILE-- 4 | 17 | --EXPECTF-- 18 | PHPUnit %s by Sebastian Bergmann. 19 | 20 | .. 21 | 22 | Time: %i %s, Memory: %sMb 23 | 24 | OK (2 tests, 2 assertions) 25 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/TextUI/testdox-text.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --testdox-text php://stdout BankAccountTest ../_files/BankAccountTest.php 3 | --FILE-- 4 | 16 | --EXPECTF-- 17 | PHPUnit %s by Sebastian Bergmann. 18 | 19 | BankAccount 20 | ... [x] Balance is initially zero 21 | [x] Balance cannot become negative 22 | 23 | 24 | 25 | Time: %i %s, Memory: %sMb 26 | 27 | OK (3 tests, 3 assertions) 28 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/Regression/GitHub/445.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | GH-455: expectOutputString not working in strict mode 3 | --FILE-- 4 | 14 | --EXPECTF-- 15 | PHPUnit %s by Sebastian Bergmann. 16 | 17 | ..F 18 | 19 | Time: %i %s, Memory: %sMb 20 | 21 | There was 1 failure: 22 | 23 | 1) Issue445Test::testNotMatchingOutput 24 | Failed asserting that two strings are equal. 25 | --- Expected 26 | +++ Actual 27 | @@ @@ 28 | -'foo' 29 | +'bar' 30 | 31 | 32 | FAILURES! 33 | Tests: 3, Assertions: 3, Failures: 1. 34 | 35 | -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "phpunit/php-timer", 3 | "description": "Utility class for timing", 4 | "type": "library", 5 | "keywords": [ 6 | "timer" 7 | ], 8 | "homepage": "http://www.phpunit.de/", 9 | "license": "BSD-3-Clause", 10 | "authors": [ 11 | { 12 | "name": "Sebastian Bergmann", 13 | "email": "sb@sebastian-bergmann.de", 14 | "role": "lead" 15 | } 16 | ], 17 | "support": { 18 | "issues": "https://github.com/sebastianbergmann/php-timer/issues", 19 | "irc": "irc://irc.freenode.net/phpunit" 20 | }, 21 | "require": { 22 | "php": ">=5.3.3" 23 | }, 24 | "autoload": { 25 | "classmap": [ 26 | "PHP/" 27 | ] 28 | }, 29 | "include-path": [ 30 | "" 31 | ] 32 | } 33 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/structureWrongNumberOfAttributes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Image 1: Dette er en test caption 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /jquery.spellchecker.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jquery.spellchecker", 3 | "title": "jQuery Spellchecker", 4 | "description": "A jquery spellchecker plugin", 5 | "version": "0.2.4", 6 | "homepage": "https://github.com/badsyntax/jquery-spellchecker", 7 | "author": { 8 | "name": "Richard Willis", 9 | "email": "willis.rh@gmail.com", 10 | "url": "http://badsyntax.co" 11 | }, 12 | "repository": { 13 | "type": "git", 14 | "url": "https://github.com/badsyntax/jquery-spellchecker.git" 15 | }, 16 | "bugs": { 17 | "url": "https://github.com/badsyntax/jquery-spellchecker/issues" 18 | }, 19 | "licenses": [ 20 | { 21 | "type": "MIT", 22 | "url": "https://github.com/badsyntax/jquery-spellchecker/blob/master/LICENSE-MIT" 23 | } 24 | ], 25 | "dependencies": { 26 | "jquery": "1.*" 27 | }, 28 | "keywords": [] 29 | } 30 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/Regression/GitHub/322.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | GH-322: group commandline option should override group/exclude setting in phpunit.xml 3 | --FILE-- 4 | 17 | --EXPECTF-- 18 | PHPUnit %s by Sebastian Bergmann. 19 | 20 | Configuration read from %s 21 | 22 | 23 | Starting test 'Issue322Test::testOne'. 24 | . 25 | 26 | Time: %i %s, Memory: %sMb 27 | 28 | OK (1 test, 0 assertions) 29 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/Regression/GitHub/74.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | GH-74: catchable fatal error in 3.5 3 | --FILE-- 4 | 15 | --EXPECTF-- 16 | PHPUnit %s by Sebastian Bergmann. 17 | 18 | E 19 | 20 | Time: %i %s, Memory: %sMb 21 | 22 | There was 1 error: 23 | 24 | 1) Issue74Test::testCreateAndThrowNewExceptionInProcessIsolation 25 | NewException: Testing GH-74 26 | 27 | %s/Tests/Regression/GitHub/74/Issue74Test.php:7 28 | %s 29 | 30 | FAILURES! 31 | Tests: 1, Assertions: 0, Errors: 1. 32 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/Regression/GitHub/503.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | GH-503: assertEquals() Line Ending Differences Are Obscure 3 | --FILE-- 4 | 13 | --EXPECTF-- 14 | PHPUnit %s by Sebastian Bergmann. 15 | 16 | F 17 | 18 | Time: %i %s, Memory: %sMb 19 | 20 | There was 1 failure: 21 | 22 | 1) Issue503Test::testCompareDifferentLineEndings 23 | Failed asserting that two strings are identical. 24 | --- Expected 25 | +++ Actual 26 | @@ @@ 27 | #Warning: Strings contain different line endings! 28 | foo 29 | 30 | %s:%i 31 | 32 | FAILURES! 33 | Tests: 1, Assertions: 1, Failures: 1. 34 | 35 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/TextUI/debug.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --debug BankAccountTest ../_files/BankAccountTest.php 3 | --FILE-- 4 | 15 | --EXPECTF-- 16 | PHPUnit %s by Sebastian Bergmann. 17 | 18 | 19 | Starting test 'BankAccountTest::testBalanceIsInitiallyZero'. 20 | . 21 | Starting test 'BankAccountTest::testBalanceCannotBecomeNegative'. 22 | . 23 | Starting test 'BankAccountTest::testBalanceCannotBecomeNegative2'. 24 | . 25 | 26 | Time: %i %s, Memory: %sMb 27 | 28 | OK (3 tests, 3 assertions) 29 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/TextUI/testdox-html.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --testdox-html php://stdout BankAccountTest ../_files/BankAccountTest.php 3 | --FILE-- 4 | 16 | --EXPECTF-- 17 | PHPUnit %s by Sebastian Bergmann. 18 | 19 |

BankAccount

    ...
  • Balance is initially zero
  • Balance cannot become negative
20 | 21 | Time: %i %s, Memory: %sMb 22 | 23 | OK (3 tests, 3 assertions) 24 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/structureAttributesAreSameButValuesAreNot.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Image 1: Dette er en test caption 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Symfony/Component/Yaml/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "symfony/yaml", 3 | "type": "library", 4 | "description": "Symfony Yaml Component", 5 | "keywords": [], 6 | "homepage": "http://symfony.com", 7 | "license": "MIT", 8 | "authors": [ 9 | { 10 | "name": "Fabien Potencier", 11 | "email": "fabien@symfony.com" 12 | }, 13 | { 14 | "name": "Symfony Community", 15 | "homepage": "http://symfony.com/contributors" 16 | } 17 | ], 18 | "require": { 19 | "php": ">=5.3.3" 20 | }, 21 | "autoload": { 22 | "psr-0": { "Symfony\\Component\\Yaml": "" } 23 | }, 24 | "target-dir": "Symfony/Component/Yaml", 25 | "minimum-stability": "dev", 26 | "extra": { 27 | "branch-alias": { 28 | "dev-master": "2.1-dev" 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/ExceptionInTest.php: -------------------------------------------------------------------------------- 1 | setUp = TRUE; 13 | } 14 | 15 | protected function assertPreConditions() 16 | { 17 | $this->assertPreConditions = TRUE; 18 | } 19 | 20 | public function testSomething() 21 | { 22 | $this->testSomething = TRUE; 23 | throw new Exception; 24 | } 25 | 26 | protected function assertPostConditions() 27 | { 28 | $this->assertPostConditions = TRUE; 29 | } 30 | 31 | protected function tearDown() 32 | { 33 | $this->tearDown = TRUE; 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/PHP/CodeCoverage/Report/HTML/Renderer/Template/directory_item.html.dist: -------------------------------------------------------------------------------- 1 | 2 | {icon}{name} 3 | {lines_bar} 4 |
{lines_executed_percent}
5 |
{lines_number}
6 | {methods_bar} 7 |
{methods_tested_percent}
8 |
{methods_number}
9 | {classes_bar} 10 |
{classes_tested_percent}
11 |
{classes_number}
12 | 13 | 14 | -------------------------------------------------------------------------------- /vendor/phpunit/php-text-template/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "phpunit/php-text-template", 3 | "description": "Simple template engine.", 4 | "type": "library", 5 | "keywords": [ 6 | "template" 7 | ], 8 | "homepage": "https://github.com/sebastianbergmann/php-text-template/", 9 | "license": "BSD-3-Clause", 10 | "authors": [ 11 | { 12 | "name": "Sebastian Bergmann", 13 | "email": "sb@sebastian-bergmann.de", 14 | "role": "lead" 15 | } 16 | ], 17 | "support": { 18 | "issues": "https://github.com/sebastianbergmann/php-text-template/issues", 19 | "irc": "irc://irc.freenode.net/phpunit" 20 | }, 21 | "require": { 22 | "php": ">=5.3.3" 23 | }, 24 | "autoload": { 25 | "classmap": [ 26 | "Text/" 27 | ] 28 | }, 29 | "include-path": [ 30 | "" 31 | ] 32 | } 33 | -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Tests 7 | 8 | 9 | 10 | 11 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | PHP 21 | 22 | PHP/Timer/Autoload.php 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/ChangeLog.markdown: -------------------------------------------------------------------------------- 1 | PHP_TokenStream 1.1 2 | =================== 3 | 4 | This is the list of changes for the PHP_TokenStream 1.1 release series. 5 | 6 | PHP_TokenStream 1.1.5 7 | --------------------- 8 | 9 | * No changes. 10 | 11 | PHP_TokenStream 1.1.4 12 | --------------------- 13 | 14 | * No changes. 15 | 16 | PHP_TokenStream 1.1.3 17 | --------------------- 18 | 19 | * Added class for the `T_TRAIT_C` token that was added in PHP 5.4. 20 | 21 | PHP_TokenStream 1.1.2 22 | --------------------- 23 | 24 | * Added classes for the `T_CALLABLE` and `T_INSTEADOF` tokens that were added in PHP 5.4. 25 | * Added support for namespaced functions. 26 | 27 | PHP_TokenStream 1.1.1 28 | --------------------- 29 | 30 | * Fixed issue #19: Notice in `PHP_Token_INTERFACE::hasInterfaces()`. 31 | 32 | PHP_TokenStream 1.1.0 33 | --------------------- 34 | 35 | * Moved `phptok` tool to separate package. 36 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/ExceptionInSetUpTest.php: -------------------------------------------------------------------------------- 1 | setUp = TRUE; 13 | throw new Exception; 14 | } 15 | 16 | protected function assertPreConditions() 17 | { 18 | $this->assertPreConditions = TRUE; 19 | } 20 | 21 | public function testSomething() 22 | { 23 | $this->testSomething = TRUE; 24 | } 25 | 26 | protected function assertPostConditions() 27 | { 28 | $this->assertPostConditions = TRUE; 29 | } 30 | 31 | protected function tearDown() 32 | { 33 | $this->tearDown = TRUE; 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/structureExpected.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Image 1: Dette er en test caption 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/TextUI/log-tap.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --log-tap php://stdout BankAccountTest ../_files/BankAccountTest.php 3 | --FILE-- 4 | 16 | --EXPECTF-- 17 | PHPUnit %s by Sebastian Bergmann. 18 | 19 | TAP version 13 20 | .ok 1 - BankAccountTest::testBalanceIsInitiallyZero 21 | .ok 2 - BankAccountTest::testBalanceCannotBecomeNegative 22 | .ok 3 - BankAccountTest::testBalanceCannotBecomeNegative2 23 | 1..3 24 | 25 | 26 | Time: %i %s, Memory: %sMb 27 | 28 | OK (3 tests, 3 assertions) 29 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/ExceptionInTearDownTest.php: -------------------------------------------------------------------------------- 1 | setUp = TRUE; 13 | } 14 | 15 | protected function assertPreConditions() 16 | { 17 | $this->assertPreConditions = TRUE; 18 | } 19 | 20 | public function testSomething() 21 | { 22 | $this->testSomething = TRUE; 23 | } 24 | 25 | protected function assertPostConditions() 26 | { 27 | $this->assertPostConditions = TRUE; 28 | } 29 | 30 | protected function tearDown() 31 | { 32 | $this->tearDown = TRUE; 33 | throw new Exception; 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "phpunit/php-token-stream", 3 | "description": "Wrapper around PHP's tokenizer extension.", 4 | "type": "library", 5 | "keywords": [ 6 | "tokenizer" 7 | ], 8 | "homepage": "http://www.phpunit.de/", 9 | "license": "BSD-3-Clause", 10 | "authors": [ 11 | { 12 | "name": "Sebastian Bergmann", 13 | "email": "sb@sebastian-bergmann.de", 14 | "role": "lead" 15 | } 16 | ], 17 | "support": { 18 | "issues": "https://github.com/sebastianbergmann/php-token-stream/issues", 19 | "irc": "irc://irc.freenode.net/phpunit" 20 | }, 21 | "require": { 22 | "php": ">=5.3.3", 23 | "ext-tokenizer": "*" 24 | }, 25 | "autoload": { 26 | "classmap": [ 27 | "PHP/" 28 | ] 29 | }, 30 | "include-path": [ 31 | "" 32 | ] 33 | } 34 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/TextUI/fatal-isolation.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit FatalTest ../_files/FatalTest.php 3 | --FILE-- 4 | 14 | --EXPECTF-- 15 | PHPUnit %s by Sebastian Bergmann. 16 | 17 | E 18 | 19 | Time: %i %s, Memory: %sMb 20 | 21 | There was 1 error: 22 | 23 | 1) FatalTest::testFatalError 24 | PHPUnit_Framework_Exception: Fatal error: Call to undefined function non_existing_function() in %s 25 | 26 | %s:%i 27 | 28 | Caused by 29 | ErrorException: unserialize(): Error at offset %i of %i bytes 30 | 31 | %s:%i 32 | 33 | FAILURES! 34 | Tests: 1, Assertions: 0, Errors: 1. 35 | 36 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/ExceptionStack.php: -------------------------------------------------------------------------------- 1 | assertEquals(array(1), array(2), 'message'); 10 | } catch (PHPUnit_Framework_ExpectationFailedException $e) { 11 | $message = $e->getMessage() . "\n" . $e->getComparisonFailure()->getDiff(); 12 | throw new ExceptionStackTestException("Child exception\n$message", 101, $e); 13 | } 14 | } 15 | 16 | public function testNestedExceptions() 17 | { 18 | $exceptionThree = new Exception('Three'); 19 | $exceptionTwo = new InvalidArgumentException('Two', 0, $exceptionThree); 20 | $exceptionOne = new Exception('One', 0, $exceptionTwo); 21 | throw $exceptionOne; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/ExceptionInAssertPreConditionsTest.php: -------------------------------------------------------------------------------- 1 | setUp = TRUE; 13 | } 14 | 15 | protected function assertPreConditions() 16 | { 17 | $this->assertPreConditions = TRUE; 18 | throw new Exception; 19 | } 20 | 21 | public function testSomething() 22 | { 23 | $this->testSomething = TRUE; 24 | } 25 | 26 | protected function assertPostConditions() 27 | { 28 | $this->assertPostConditions = TRUE; 29 | } 30 | 31 | protected function tearDown() 32 | { 33 | $this->tearDown = TRUE; 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/structureIsSameButDataIsNot.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Image is not the same 1: Dette er en test caption 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/ExceptionInAssertPostConditionsTest.php: -------------------------------------------------------------------------------- 1 | setUp = TRUE; 13 | } 14 | 15 | protected function assertPreConditions() 16 | { 17 | $this->assertPreConditions = TRUE; 18 | } 19 | 20 | public function testSomething() 21 | { 22 | $this->testSomething = TRUE; 23 | } 24 | 25 | protected function assertPostConditions() 26 | { 27 | $this->assertPostConditions = TRUE; 28 | throw new Exception; 29 | } 30 | 31 | protected function tearDown() 32 | { 33 | $this->tearDown = TRUE; 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/PHP/CodeCoverage/Report/HTML/Renderer/Template/file_item.html.dist: -------------------------------------------------------------------------------- 1 | 2 | {name} 3 | {classes_bar} 4 |
{classes_tested_percent}
5 |
{classes_number}
6 | {methods_bar} 7 |
{methods_tested_percent}
8 |
{methods_number}
9 | {crap} 10 | {lines_bar} 11 |
{lines_executed_percent}
12 |
{lines_number}
13 | 14 | 15 | -------------------------------------------------------------------------------- /vendor/phpunit/php-file-iterator/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "phpunit/php-file-iterator", 3 | "description": "FilterIterator implementation that filters files based on a list of suffixes.", 4 | "type": "library", 5 | "keywords": [ 6 | "iterator", 7 | "filesystem" 8 | ], 9 | "homepage": "http://www.phpunit.de/", 10 | "license": "BSD-3-Clause", 11 | "authors": [ 12 | { 13 | "name": "Sebastian Bergmann", 14 | "email": "sb@sebastian-bergmann.de", 15 | "role": "lead" 16 | } 17 | ], 18 | "support": { 19 | "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", 20 | "irc": "irc://irc.freenode.net/phpunit" 21 | }, 22 | "require": { 23 | "php": ">=5.3.3" 24 | }, 25 | "autoload": { 26 | "classmap": [ 27 | "File/" 28 | ] 29 | }, 30 | "include-path": [ 31 | "" 32 | ] 33 | } 34 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/structureIgnoreTextNodes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | textnode 5 | 6 | textnode 7 | 8 | textnode 9 | Image 1: Dette er en test caption 10 | textnode 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/Tests/MockObject/wsdl_class_partial.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | PHPUnit_Framework_MockObject_Generator::generateClassFromWsdl('GoogleSearch.wsdl', 'GoogleSearch', array('doGoogleSearch')) 3 | --SKIPIF-- 4 | 7 | --FILE-- 8 | 18 | --EXPECTF-- 19 | class GoogleSearch extends \SOAPClient 20 | { 21 | public function __construct($wsdl, array $options) 22 | { 23 | parent::__construct('%s/GoogleSearch.wsdl', $options); 24 | } 25 | 26 | public function doGoogleSearch($key, $q, $start, $maxResults, $filter, $restrict, $safeSearch, $lr, $ie, $oe) 27 | { 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | Tests 11 | 12 | 13 | 14 | 15 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | PHP 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/Regression/GitHub/581.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | GH-581: PHPUnit_Util_Type::export adds extra newlines in Windows 3 | --FILE-- 4 | 13 | --EXPECTF-- 14 | PHPUnit %s by Sebastian Bergmann. 15 | 16 | F 17 | 18 | Time: %i %s, Memory: %sMb 19 | 20 | There was 1 failure: 21 | 22 | 1) Issue581Test::testExportingObjectsDoesNotBreakWindowsLineFeeds 23 | Failed asserting that two objects are equal. 24 | --- Expected 25 | +++ Actual 26 | @@ @@ 27 | stdClass Object ( 28 | 0 => 1 29 | 1 => 2 30 | 2 => 'Test\n' 31 | 3 => 4 32 | - 4 => 5 33 | + 4 => 1 34 | 5 => 6 35 | 6 => 7 36 | 7 => 8 37 | ) 38 | 39 | %s:%i 40 | 41 | FAILURES! 42 | Tests: 1, Assertions: 1, Failures: 1. 43 | 44 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/Regression/578.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | #578: Double printing of trace line for exceptions from notices and warnings 3 | --FILE-- 4 | 12 | --EXPECTF-- 13 | PHPUnit %s by Sebastian Bergmann. 14 | 15 | EEE 16 | 17 | Time: %i %s, Memory: %sMb 18 | 19 | There were 3 errors: 20 | 21 | 1) Issue578Test::testNoticesDoublePrintStackTrace 22 | Invalid error type specified 23 | 24 | %s/Issue578Test.php:%i 25 | 26 | 2) Issue578Test::testWarningsDoublePrintStackTrace 27 | Invalid error type specified 28 | 29 | %s/Issue578Test.php:%i 30 | 31 | 3) Issue578Test::testUnexpectedExceptionsPrintsCorrectly 32 | Exception: Double printed exception 33 | 34 | %s/Issue578Test.php:%i 35 | 36 | FAILURES! 37 | Tests: 3, Assertions: 0, Errors: 3. 38 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/ClassWithNonPublicAttributes.php: -------------------------------------------------------------------------------- 1 | 'pspell/dictionary', 18 | 'lang' => 'en' 19 | ); 20 | 21 | public function __construct($config = array()) 22 | { 23 | parent::__construct($config); 24 | 25 | $this->pspell_link = pspell_new($this->_config['lang'], '', '', 'utf-8'); 26 | } 27 | 28 | public function get_word_suggestions($word = NULL) 29 | { 30 | return pspell_suggest($this->pspell_link, $word); 31 | } 32 | 33 | public function check_word($word = NULL) 34 | { 35 | return !pspell_check($this->pspell_link, $word); 36 | } 37 | } -------------------------------------------------------------------------------- /src/webservices/php/SpellChecker/Driver/Pspell.php: -------------------------------------------------------------------------------- 1 | 'pspell/dictionary', 18 | 'lang' => 'en' 19 | ); 20 | 21 | public function __construct($config = array()) 22 | { 23 | parent::__construct($config); 24 | 25 | $this->pspell_link = pspell_new($this->_config['lang'], '', '', 'utf-8'); 26 | } 27 | 28 | public function get_word_suggestions($word = NULL) 29 | { 30 | return pspell_suggest($this->pspell_link, $word); 31 | } 32 | 33 | public function check_word($word = NULL) 34 | { 35 | return !pspell_check($this->pspell_link, $word); 36 | } 37 | } -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "phpunit/phpunit-mock-objects", 3 | "description": "Mock Object library for PHPUnit", 4 | "type": "library", 5 | "keywords": [ 6 | "xunit", 7 | "mock" 8 | ], 9 | "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/", 10 | "license": "BSD-3-Clause", 11 | "authors": [ 12 | { 13 | "name": "Sebastian Bergmann", 14 | "email": "sb@sebastian-bergmann.de", 15 | "role": "lead" 16 | } 17 | ], 18 | "support": { 19 | "issues": "https://github.com/sebastianbergmann/phpunit-mock-objects/issues", 20 | "irc": "irc://irc.freenode.net/phpunit" 21 | }, 22 | "require": { 23 | "php": ">=5.3.3", 24 | "phpunit/php-text-template": ">=1.1.1@stable" 25 | }, 26 | "suggest": { 27 | "ext-soap": "*" 28 | }, 29 | "autoload": { 30 | "classmap": [ 31 | "PHPUnit/" 32 | ] 33 | }, 34 | "include-path": [ 35 | "" 36 | ] 37 | } 38 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | Tests/PHP 10 | 11 | 12 | 13 | 14 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | PHP 24 | 25 | PHP/CodeCoverage/Autoload.php 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/Tests/MockObject/wsdl_class.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | PHPUnit_Framework_MockObject_Generator::generateClassFromWsdl('GoogleSearch.wsdl', 'GoogleSearch') 3 | --SKIPIF-- 4 | 7 | --FILE-- 8 | 17 | --EXPECTF-- 18 | class GoogleSearch extends \SOAPClient 19 | { 20 | public function __construct($wsdl, array $options) 21 | { 22 | parent::__construct('%s/GoogleSearch.wsdl', $options); 23 | } 24 | 25 | public function doGetCachedPage($key, $url) 26 | { 27 | } 28 | 29 | public function doSpellingSuggestion($key, $phrase) 30 | { 31 | } 32 | 33 | public function doGoogleSearch($key, $q, $start, $maxResults, $filter, $restrict, $safeSearch, $lr, $ie, $oe) 34 | { 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Tests 11 | Tests 12 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | PHPUnit 26 | 27 | PHPUnit/Framework/MockObject/Autoload.php 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/TextUI/dependencies.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --verbose DependencyTestSuite ../_files/DependencyTestSuite.php 3 | --FILE-- 4 | 15 | --EXPECTF-- 16 | PHPUnit %s by Sebastian Bergmann. 17 | 18 | ...FSS 19 | 20 | Time: %i %s, Memory: %sMb 21 | 22 | There was 1 failure: 23 | 24 | 1) DependencyFailureTest::testOne 25 | 26 | %s:%i 27 | %s:%i 28 | 29 | There were 2 skipped tests: 30 | 31 | 1) DependencyFailureTest::testTwo 32 | This test depends on "DependencyFailureTest::testOne" to pass. 33 | 34 | %s:%i 35 | 36 | 2) DependencyFailureTest::testThree 37 | This test depends on "DependencyFailureTest::testTwo" to pass. 38 | 39 | %s:%i 40 | 41 | FAILURES! 42 | Tests: 4, Assertions: 0, Failures: 1, Skipped: 2. 43 | -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- 1 | Copyright (c) 2012 Richard Willis 2 | 3 | Permission is hereby granted, free of charge, to any person 4 | obtaining a copy of this software and associated documentation 5 | files (the "Software"), to deal in the Software without 6 | restriction, including without limitation the rights to use, 7 | copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | copies of the Software, and to permit persons to whom the 9 | Software is furnished to do so, subject to the following 10 | conditions: 11 | 12 | The above copyright notice and this permission notice shall be 13 | included in all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 17 | OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 19 | HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 20 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 21 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 | OTHER DEALINGS IN THE SOFTWARE. 23 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/Tests/MockObject/wsdl_class_namespace.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | PHPUnit_Framework_MockObject_Generator::generateClassFromWsdl('GoogleSearch.wsdl', 'GoogleSearch') 3 | --SKIPIF-- 4 | 7 | --FILE-- 8 | 17 | --EXPECTF-- 18 | namespace My\Space; 19 | 20 | class GoogleSearch extends \SOAPClient 21 | { 22 | public function __construct($wsdl, array $options) 23 | { 24 | parent::__construct('%s/GoogleSearch.wsdl', $options); 25 | } 26 | 27 | public function doGetCachedPage($key, $url) 28 | { 29 | } 30 | 31 | public function doSpellingSuggestion($key, $phrase) 32 | { 33 | } 34 | 35 | public function doGoogleSearch($key, $q, $start, $maxResults, $filter, $restrict, $safeSearch, $lr, $ie, $oe) 36 | { 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /src/js/libs/jasmine/MIT.LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2008-2011 Pivotal Labs 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /dist/webservices/php/SpellChecker/Request.php: -------------------------------------------------------------------------------- 1 | driver = self::post('driver'); 22 | $this->action = self::post('action'); 23 | $this->lang = self::post('lang'); 24 | $this->execute_action(); 25 | } 26 | 27 | public function execute_action() 28 | { 29 | $class = '\SpellChecker\Driver\\' . ucfirst(strtolower($this->driver)); 30 | $driver = new $class(array('lang' => $this->lang)); 31 | $driver->{$this->action}(); 32 | } 33 | 34 | public static function post($key = NULL) 35 | { 36 | if ($key === NULL) 37 | { 38 | return $_POST; 39 | } 40 | if (!$_POST) 41 | { 42 | return ''; 43 | } 44 | return isset($_POST[$key]) ? $_POST[$key] : ''; 45 | } 46 | } -------------------------------------------------------------------------------- /src/webservices/php/SpellChecker/Request.php: -------------------------------------------------------------------------------- 1 | driver = self::post('driver'); 22 | $this->action = self::post('action'); 23 | $this->lang = self::post('lang'); 24 | $this->execute_action(); 25 | } 26 | 27 | public function execute_action() 28 | { 29 | $class = '\SpellChecker\Driver\\' . ucfirst(strtolower($this->driver)); 30 | $driver = new $class(array('lang' => $this->lang)); 31 | $driver->{$this->action}(); 32 | } 33 | 34 | public static function post($key = NULL) 35 | { 36 | if ($key === NULL) 37 | { 38 | return $_POST; 39 | } 40 | if (!$_POST) 41 | { 42 | return ''; 43 | } 44 | return isset($_POST[$key]) ? $_POST[$key] : ''; 45 | } 46 | } -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/README.markdown: -------------------------------------------------------------------------------- 1 | PHP_Timer 2 | ========= 3 | 4 | Installation 5 | ------------ 6 | 7 | PHP_Timer should be installed using the [PEAR Installer](http://pear.php.net/). This installer is the backbone of PEAR, which provides a distribution system for PHP packages, and is shipped with every release of PHP since version 4.3.0. 8 | 9 | The PEAR channel (`pear.phpunit.de`) that is used to distribute PHP_Timer needs to be registered with the local PEAR environment: 10 | 11 | sb@ubuntu ~ % pear channel-discover pear.phpunit.de 12 | Adding Channel "pear.phpunit.de" succeeded 13 | Discovery of channel "pear.phpunit.de" succeeded 14 | 15 | This has to be done only once. Now the PEAR Installer can be used to install packages from the PHPUnit channel: 16 | 17 | sb@vmware ~ % pear install phpunit/PHP_Timer 18 | downloading PHP_Timer-1.0.0.tgz ... 19 | Starting to download PHP_Timer-1.0.0.tgz (2,536 bytes) 20 | ....done: 2,536 bytes 21 | install ok: channel://pear.phpunit.de/PHP_Timer-1.0.0 22 | 23 | After the installation you can find the PHP_Timer source files inside your local PEAR directory; the path is usually `/usr/lib/php/PHP`. 24 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Symfony/Component/Yaml/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2004-2012 Fabien Potencier 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is furnished 8 | to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in all 11 | copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- 1 | $path) { 27 | $loader->add($namespace, $path); 28 | } 29 | 30 | $classMap = require __DIR__ . '/autoload_classmap.php'; 31 | if ($classMap) { 32 | $loader->addClassMap($classMap); 33 | } 34 | 35 | $loader->register(); 36 | 37 | return $loader; 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/TextUI/exception-stack.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit ExceptionStackTest ../_files/ExceptionStack.php 3 | --FILE-- 4 | 12 | --EXPECTF-- 13 | PHPUnit %s by Sebastian Bergmann. 14 | 15 | EE 16 | 17 | Time: %i %s, Memory: %sMb 18 | 19 | There were 2 errors: 20 | 21 | 1) ExceptionStackTest::testPrintingChildException 22 | ExceptionStackTestException: Child exception 23 | message 24 | Failed asserting that two arrays are equal. 25 | --- Expected 26 | +++ Actual 27 | @@ @@ 28 | Array ( 29 | - 0 => 1 30 | + 0 => 2 31 | ) 32 | 33 | %s:%i 34 | 35 | Caused by 36 | %s:%i 37 | 38 | 2) ExceptionStackTest::testNestedExceptions 39 | Exception: One 40 | 41 | %s:%i 42 | 43 | Caused by 44 | InvalidArgumentException: Two 45 | 46 | %s:%i 47 | 48 | Caused by 49 | Exception: Three 50 | 51 | %s:%i 52 | 53 | FAILURES! 54 | Tests: 2, Assertions: 1, Errors: 2. 55 | 56 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/Regression/GitHub/244.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | GH-244: Expected Exception should support string codes 3 | --FILE-- 4 | 15 | --EXPECTF-- 16 | PHPUnit %s by Sebastian Bergmann. 17 | 18 | .FFF 19 | 20 | Time: %i %s, Memory: %sMb 21 | 22 | There were 3 failures: 23 | 24 | 1) Issue244Test::testFails 25 | Failed asserting that '123StringCode' is equal to expected exception code 'OtherString'. 26 | 27 | %s:%i 28 | 29 | 2) Issue244Test::testFailsTooIfExpectationIsANumber 30 | Failed asserting that '123StringCode' is equal to expected exception code 123. 31 | 32 | %s:%i 33 | 34 | 3) Issue244Test::testFailsTooIfExceptionCodeIsANumber 35 | Failed asserting that 123 is equal to expected exception code '123String'. 36 | 37 | %s:%i 38 | 39 | FAILURES! 40 | Tests: 4, Assertions: 8, Failures: 3. 41 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/TextUI/dependencies-isolation.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --process-isolation --verbose DependencyTestSuite ../_files/DependencyTestSuite.php 3 | --FILE-- 4 | 16 | --EXPECTF-- 17 | PHPUnit %s by Sebastian Bergmann. 18 | 19 | ...FSS 20 | 21 | Time: %i %s, Memory: %sMb 22 | 23 | There was 1 failure: 24 | 25 | 1) DependencyFailureTest::testOne 26 | 27 | %s:%i 28 | 29 | There were 2 skipped tests: 30 | 31 | 1) DependencyFailureTest::testTwo 32 | This test depends on "DependencyFailureTest::testOne" to pass. 33 | 34 | %s:%i 35 | 36 | 2) DependencyFailureTest::testThree 37 | This test depends on "DependencyFailureTest::testTwo" to pass. 38 | 39 | %s:%i 40 | 41 | FAILURES! 42 | Tests: 4, Assertions: 0, Failures: 1, Skipped: 2. 43 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/Tests/_files/ignored-lines-clover.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /vendor/phpunit/php-file-iterator/README.markdown: -------------------------------------------------------------------------------- 1 | File_Iterator 2 | ============= 3 | 4 | Installation 5 | ------------ 6 | 7 | File_Iterator should be installed using the [PEAR Installer](http://pear.php.net/). This installer is the backbone of PEAR, which provides a distribution system for PHP packages, and is shipped with every release of PHP since version 4.3.0. 8 | 9 | The PEAR channel (`pear.phpunit.de`) that is used to distribute File_Iterator needs to be registered with the local PEAR environment: 10 | 11 | sb@ubuntu ~ % pear channel-discover pear.phpunit.de 12 | Adding Channel "pear.phpunit.de" succeeded 13 | Discovery of channel "pear.phpunit.de" succeeded 14 | 15 | This has to be done only once. Now the PEAR Installer can be used to install packages from the PHPUnit channel: 16 | 17 | sb@vmware ~ % pear install phpunit/File_Iterator 18 | downloading File_Iterator-1.1.1.tgz ... 19 | Starting to download File_Iterator-1.1.1.tgz (3,173 bytes) 20 | ....done: 3,173 bytes 21 | install ok: channel://pear.phpunit.de/File_Iterator-1.1.1 22 | 23 | After the installation you can find the File_Iterator source files inside your local PEAR directory; the path is usually `/usr/lib/php/File`. 24 | -------------------------------------------------------------------------------- /vendor/phpunit/php-text-template/README.markdown: -------------------------------------------------------------------------------- 1 | Text_Template 2 | ============= 3 | 4 | Installation 5 | ------------ 6 | 7 | Text_Template should be installed using the [PEAR Installer](http://pear.php.net/). This installer is the backbone of PEAR, which provides a distribution system for PHP packages, and is shipped with every release of PHP since version 4.3.0. 8 | 9 | The PEAR channel (`pear.phpunit.de`) that is used to distribute Text_Template needs to be registered with the local PEAR environment: 10 | 11 | sb@ubuntu ~ % pear channel-discover pear.phpunit.de 12 | Adding Channel "pear.phpunit.de" succeeded 13 | Discovery of channel "pear.phpunit.de" succeeded 14 | 15 | This has to be done only once. Now the PEAR Installer can be used to install packages from the PHPUnit channel: 16 | 17 | sb@vmware ~ % pear install phpunit/Text_Template 18 | downloading Text_Template-1.0.0.tgz ... 19 | Starting to download Text_Template-1.0.0.tgz (2,493 bytes) 20 | ....done: 2,493 bytes 21 | install ok: channel://pear.phpunit.de/Text_Template-1.0.0 22 | 23 | After the installation you can find the Text_Template source files inside your local PEAR directory; the path is usually `/usr/lib/php/Text`. 24 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/TemplateMethodsTest.php: -------------------------------------------------------------------------------- 1 | assertTrue(TRUE); 23 | } 24 | 25 | public function testTwo() 26 | { 27 | print __METHOD__ . "\n"; 28 | $this->assertTrue(FALSE); 29 | } 30 | 31 | protected function assertPostConditions() 32 | { 33 | print __METHOD__ . "\n"; 34 | } 35 | 36 | protected function tearDown() 37 | { 38 | print __METHOD__ . "\n"; 39 | } 40 | 41 | public static function tearDownAfterClass() 42 | { 43 | print __METHOD__ . "\n"; 44 | } 45 | 46 | protected function onNotSuccessfulTest(Exception $e) 47 | { 48 | print __METHOD__ . "\n"; 49 | throw $e; 50 | } 51 | } 52 | ?> 53 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/README.markdown: -------------------------------------------------------------------------------- 1 | PHP_TokenStream 2 | =============== 3 | 4 | Installation 5 | ------------ 6 | 7 | PHP_TokenStream should be installed using the [PEAR Installer](http://pear.php.net/). This installer is the backbone of PEAR, which provides a distribution system for PHP packages, and is shipped with every release of PHP since version 4.3.0. 8 | 9 | The PEAR channel (`pear.phpunit.de`) that is used to distribute PHP_TokenStream needs to be registered with the local PEAR environment: 10 | 11 | sb@ubuntu ~ % pear channel-discover pear.phpunit.de 12 | Adding Channel "pear.phpunit.de" succeeded 13 | Discovery of channel "pear.phpunit.de" succeeded 14 | 15 | This has to be done only once. Now the PEAR Installer can be used to install packages from the PHPUnit channel: 16 | 17 | sb@ubuntu tokenstream % pear install phpunit/PHP_TokenStream-beta 18 | downloading PHP_TokenStream-0.9.1.tgz ... 19 | Starting to download PHP_TokenStream-0.9.1.tgz (5,113 bytes) 20 | ...done: 5,113 bytes 21 | install ok: channel://pear.phpunit.de/PHP_TokenStream-0.9.1 22 | 23 | After the installation you can find the PHP_TokenStream source files inside your local PEAR directory; the path is usually `/usr/lib/php/PHP`. 24 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "phpunit/php-code-coverage", 3 | "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", 4 | "type": "library", 5 | "keywords": [ 6 | "coverage", 7 | "testing", 8 | "xunit" 9 | ], 10 | "homepage": "https://github.com/sebastianbergmann/php-code-coverage", 11 | "license": "BSD-3-Clause", 12 | "authors": [ 13 | { 14 | "name": "Sebastian Bergmann", 15 | "email": "sb@sebastian-bergmann.de", 16 | "role": "lead" 17 | } 18 | ], 19 | "support": { 20 | "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", 21 | "irc": "irc://irc.freenode.net/phpunit" 22 | }, 23 | "require": { 24 | "php": ">=5.3.3", 25 | "phpunit/php-file-iterator": ">=1.3.0@stable", 26 | "phpunit/php-token-stream": ">=1.1.3@stable", 27 | "phpunit/php-text-template": ">=1.1.1@stable" 28 | }, 29 | "suggest": { 30 | "ext-dom": "*", 31 | "ext-xdebug": ">=2.0.5" 32 | }, 33 | "autoload": { 34 | "classmap": [ 35 | "PHP/" 36 | ] 37 | }, 38 | "include-path": [ 39 | "" 40 | ] 41 | } 42 | -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/build/phpmd.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | Sebastian Bergmann's ruleset 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/build/phpmd.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | Sebastian Bergmann's ruleset 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/build/phpmd.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | Sebastian Bergmann's ruleset 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/build/phpmd.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | Sebastian Bergmann's ruleset 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /vendor/phpunit/php-file-iterator/build/phpmd.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | Sebastian Bergmann's ruleset 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /vendor/phpunit/php-text-template/build/phpmd.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | Sebastian Bergmann's ruleset 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/build/phpmd.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | Sebastian Bergmann's ruleset 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/Regression/GitHub/244/Issue244Test.php: -------------------------------------------------------------------------------- 1 | code = '123StringCode'; 46 | } 47 | } 48 | 49 | class Issue244ExceptionIntCode extends Exception 50 | { 51 | public function __construct() 52 | { 53 | $this->code = 123; 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/TextUI/log-xml.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | phpunit --log-junit php://stdout BankAccountTest ../_files/BankAccountTest.php 3 | --FILE-- 4 | 16 | --EXPECTF-- 17 | PHPUnit %s by Sebastian Bergmann. 18 | 19 | ... 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | Time: %i %s, Memory: %sMb 30 | 31 | OK (3 tests, 3 assertions) 32 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/PHPUnit/Framework/Process/TestCaseMethod.tpl.dist: -------------------------------------------------------------------------------- 1 | setCodeCoverage(new PHP_CodeCoverage); 16 | } 17 | 18 | $result->strictMode({strict}); 19 | 20 | $test = new {className}('{methodName}', unserialize('{data}'), '{dataName}'); 21 | $test->setDependencyInput(unserialize('{dependencyInput}')); 22 | $test->setInIsolation(TRUE); 23 | 24 | ob_end_clean(); 25 | ob_start(); 26 | $test->run($result); 27 | $output = ob_get_clean(); 28 | 29 | print serialize( 30 | array( 31 | 'testResult' => $test->getResult(), 32 | 'numAssertions' => $test->getNumAssertions(), 33 | 'result' => $result, 34 | 'output' => $output 35 | ) 36 | ); 37 | 38 | ob_start(); 39 | } 40 | 41 | {constants} 42 | {included_files} 43 | {globals} 44 | 45 | if (isset($GLOBALS['__PHPUNIT_BOOTSTRAP'])) { 46 | require_once $GLOBALS['__PHPUNIT_BOOTSTRAP']; 47 | unset($GLOBALS['__PHPUNIT_BOOTSTRAP']); 48 | } 49 | 50 | __phpunit_run_isolated_test(); 51 | ob_end_clean(); 52 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/PHP/CodeCoverage/Report/HTML/Renderer/Template/css/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding-top: 10px; 3 | } 4 | 5 | .popover { 6 | width: 600px; 7 | } 8 | 9 | .table .progress { 10 | margin-bottom: inherit; 11 | } 12 | 13 | .table-borderless th, .table-borderless td { 14 | border: 0 !important; 15 | } 16 | 17 | .table tbody td.success, li.success, span.success { 18 | background-color: #dff0d8; 19 | } 20 | 21 | .table tbody tr.danger, .table tbody td.danger, li.danger, span.danger { 22 | background-color: #f2dede; 23 | } 24 | 25 | .table tbody td.warning, li.warning, span.warning { 26 | background-color: #fcf8e3; 27 | } 28 | 29 | .table tbody td.info { 30 | background-color: #d9edf7; 31 | } 32 | 33 | td.big { 34 | width: 100px; 35 | } 36 | 37 | td.small { 38 | } 39 | 40 | td.codeLine { 41 | font-family: monospace; 42 | white-space: pre; 43 | } 44 | 45 | td span.comment { 46 | color: #888a85; 47 | } 48 | 49 | td span.default { 50 | color: #2e3436; 51 | } 52 | 53 | td span.html { 54 | color: #888a85; 55 | } 56 | 57 | td span.keyword { 58 | color: #2e3436; 59 | font-weight: bold; 60 | } 61 | 62 | pre span.string { 63 | color: #2e3436; 64 | } 65 | 66 | span.success, span.warning, span.danger { 67 | margin-right: 2px; 68 | padding-left: 10px; 69 | padding-right: 10px; 70 | text-align: center; 71 | } 72 | 73 | #classCoverageDistribution, #classComplexity { 74 | height: 200px; 75 | width: 475px; 76 | } 77 | -------------------------------------------------------------------------------- /dist/webservices/php/SpellChecker/Driver/Enchant.php: -------------------------------------------------------------------------------- 1 | 'en' 18 | ); 19 | 20 | public function __construct($config = array()) 21 | { 22 | parent::__construct($config); 23 | 24 | if (!function_exists('enchant_broker_init')) 25 | { 26 | exit('Enchant library not found'); 27 | } 28 | 29 | $this->broker = enchant_broker_init(); 30 | $this->dictionary = enchant_broker_request_dict($this->broker, $this->_config['lang']); 31 | 32 | if (!enchant_broker_dict_exists($this->broker, $this->_config['lang'])) 33 | { 34 | exit('Enchant dictionary not found for lang: ' . $this->_config['lang']); 35 | } 36 | } 37 | 38 | public function get_word_suggestions($word = NULL) 39 | { 40 | return enchant_dict_suggest($this->dictionary, $word); 41 | } 42 | 43 | public function check_word($word = NULL) 44 | { 45 | return !enchant_dict_check($this->dictionary, $word); 46 | } 47 | } -------------------------------------------------------------------------------- /src/webservices/php/SpellChecker/Driver/Enchant.php: -------------------------------------------------------------------------------- 1 | 'en' 18 | ); 19 | 20 | public function __construct($config = array()) 21 | { 22 | parent::__construct($config); 23 | 24 | if (!function_exists('enchant_broker_init')) 25 | { 26 | exit('Enchant library not found'); 27 | } 28 | 29 | $this->broker = enchant_broker_init(); 30 | $this->dictionary = enchant_broker_request_dict($this->broker, $this->_config['lang']); 31 | 32 | if (!enchant_broker_dict_exists($this->broker, $this->_config['lang'])) 33 | { 34 | exit('Enchant dictionary not found for lang: ' . $this->_config['lang']); 35 | } 36 | } 37 | 38 | public function get_word_suggestions($word = NULL) 39 | { 40 | return enchant_dict_suggest($this->dictionary, $word); 41 | } 42 | 43 | public function check_word($word = NULL) 44 | { 45 | return !enchant_dict_check($this->dictionary, $word); 46 | } 47 | } -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/build/PHPCS/ruleset.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Sebastian Bergmann's coding standard 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/build/PHPCS/ruleset.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Sebastian Bergmann's coding standard 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/build/PHPCS/ruleset.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Sebastian Bergmann's coding standard 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /vendor/phpunit/php-file-iterator/build/PHPCS/ruleset.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Sebastian Bergmann's coding standard 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /vendor/phpunit/php-text-template/build/PHPCS/ruleset.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Sebastian Bergmann's coding standard 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/build/PHPCS/ruleset.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Sebastian Bergmann's coding standard 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/build/PHPCS/ruleset.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Sebastian Bergmann's coding standard 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/Tests/_files/SelectorAssertionsFixture.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | Login 6 | 7 |