├── LICENSE.md
├── css
├── extrastyle.txt
├── es_Default.css
└── es_Night.css
├── vendor
├── psr
│ └── log
│ │ ├── .gitignore
│ │ └── Psr
│ │ └── Log
│ │ └── InvalidArgumentException.php
├── phpmailer
│ └── phpmailer
│ │ ├── VERSION
│ │ └── examples
│ │ ├── contents.html
│ │ ├── styles
│ │ └── wrapping.png
│ │ └── images
│ │ ├── phpmailer.png
│ │ └── phpmailer_mini.png
├── sebastian
│ ├── version
│ │ ├── .gitignore
│ │ └── .gitattributes
│ ├── exporter
│ │ ├── .github
│ │ │ └── FUNDING.yml
│ │ └── .gitignore
│ ├── recursion-context
│ │ └── .gitignore
│ ├── resource-operations
│ │ └── .gitignore
│ ├── code-unit-reverse-lookup
│ │ ├── .gitignore
│ │ └── ChangeLog.md
│ ├── comparator
│ │ └── .gitignore
│ ├── global-state
│ │ └── .gitignore
│ ├── diff
│ │ ├── .gitignore
│ │ └── tests
│ │ │ └── fixtures
│ │ │ └── patch.txt
│ ├── object-reflector
│ │ └── .gitignore
│ ├── environment
│ │ └── .gitignore
│ └── object-enumerator
│ │ └── .gitignore
├── symfony
│ ├── config
│ │ ├── Tests
│ │ │ └── Fixtures
│ │ │ │ ├── foo.xml
│ │ │ │ ├── Again
│ │ │ │ └── foo.xml
│ │ │ │ └── Util
│ │ │ │ ├── invalid.xml
│ │ │ │ ├── invalid_schema.xml
│ │ │ │ ├── valid.xml
│ │ │ │ ├── document_type.xml
│ │ │ │ └── schema.xsd
│ │ └── .gitignore
│ ├── translation
│ │ ├── Tests
│ │ │ └── fixtures
│ │ │ │ ├── empty.csv
│ │ │ │ ├── empty.ini
│ │ │ │ ├── empty.json
│ │ │ │ ├── empty.mo
│ │ │ │ ├── empty.po
│ │ │ │ ├── empty.xlf
│ │ │ │ ├── empty.yml
│ │ │ │ ├── non-valid.yml
│ │ │ │ ├── resources.yml
│ │ │ │ ├── resources.ini
│ │ │ │ ├── malformed.json
│ │ │ │ ├── resourcebundle
│ │ │ │ ├── corrupted
│ │ │ │ │ └── resources.dat
│ │ │ │ ├── dat
│ │ │ │ │ ├── packagelist.txt
│ │ │ │ │ ├── en.txt
│ │ │ │ │ ├── fr.txt
│ │ │ │ │ ├── en.res
│ │ │ │ │ ├── fr.res
│ │ │ │ │ └── resources.dat
│ │ │ │ └── res
│ │ │ │ │ └── en.res
│ │ │ │ ├── resources.dump.json
│ │ │ │ ├── resources.json
│ │ │ │ ├── empty-translation.po
│ │ │ │ ├── messages_linear.yml
│ │ │ │ ├── valid.csv
│ │ │ │ ├── messages.yml
│ │ │ │ ├── resources.php
│ │ │ │ ├── plurals.po
│ │ │ │ ├── resources.csv
│ │ │ │ ├── plurals.mo
│ │ │ │ ├── encoding.xlf
│ │ │ │ ├── resources.mo
│ │ │ │ ├── empty-translation.mo
│ │ │ │ ├── resources.po
│ │ │ │ ├── fuzzy-translations.po
│ │ │ │ ├── escaped-id.po
│ │ │ │ ├── resources.ts
│ │ │ │ └── escaped-id-plurals.po
│ │ └── .gitignore
│ ├── console
│ │ ├── Tests
│ │ │ └── Fixtures
│ │ │ │ ├── input_definition_1.md
│ │ │ │ ├── input_definition_1.txt
│ │ │ │ ├── application_run4.txt
│ │ │ │ ├── application_gethelp.txt
│ │ │ │ ├── input_argument_1.txt
│ │ │ │ ├── input_option_1.txt
│ │ │ │ ├── input_argument_2.txt
│ │ │ │ ├── input_definition_1.json
│ │ │ │ ├── input_definition_2.txt
│ │ │ │ ├── input_option_3.txt
│ │ │ │ ├── input_definition_3.txt
│ │ │ │ ├── input_option_6.txt
│ │ │ │ ├── input_argument_4.txt
│ │ │ │ ├── Style
│ │ │ │ └── SymfonyStyle
│ │ │ │ │ └── output
│ │ │ │ │ ├── output_3.txt
│ │ │ │ │ ├── output_7.txt
│ │ │ │ │ ├── output_17.txt
│ │ │ │ │ ├── output_0.txt
│ │ │ │ │ ├── output_1.txt
│ │ │ │ │ ├── output_6.txt
│ │ │ │ │ └── output_11.txt
│ │ │ │ ├── input_argument_3.txt
│ │ │ │ ├── input_argument_with_default_inf_value.txt
│ │ │ │ ├── input_option_2.txt
│ │ │ │ ├── input_option_4.txt
│ │ │ │ ├── input_option_5.txt
│ │ │ │ ├── input_argument_with_style.txt
│ │ │ │ ├── input_definition_1.xml
│ │ │ │ ├── input_option_with_default_inf_value.txt
│ │ │ │ ├── command_1.txt
│ │ │ │ ├── input_option_with_style.txt
│ │ │ │ ├── application_renderexception_doublewidth1.txt
│ │ │ │ ├── input_argument_1.md
│ │ │ │ ├── input_definition_4.txt
│ │ │ │ ├── input_argument_1.json
│ │ │ │ ├── input_argument_2.md
│ │ │ │ ├── input_argument_3.md
│ │ │ │ ├── input_argument_2.json
│ │ │ │ ├── input_argument_4.md
│ │ │ │ ├── input_argument_1.xml
│ │ │ │ ├── input_argument_with_default_inf_value.md
│ │ │ │ ├── input_argument_with_style.md
│ │ │ │ ├── input_definition_2.md
│ │ │ │ ├── Foo5Command.php
│ │ │ │ ├── input_argument_3.json
│ │ │ │ ├── input_argument_4.json
│ │ │ │ ├── application_renderexception_escapeslines.txt
│ │ │ │ ├── input_option_1.xml
│ │ │ │ ├── input_argument_2.xml
│ │ │ │ ├── input_argument_with_default_inf_value.json
│ │ │ │ ├── input_argument_with_style.json
│ │ │ │ ├── command_1.md
│ │ │ │ ├── input_option_1.md
│ │ │ │ ├── input_argument_4.xml
│ │ │ │ ├── application_renderexception_doublewidth2.txt
│ │ │ │ ├── input_option_with_style_array.txt
│ │ │ │ ├── input_option_3.md
│ │ │ │ ├── application_renderexception_doublewidth1decorated.txt
│ │ │ │ ├── input_option_4.md
│ │ │ │ ├── BarBucCommand.php
│ │ │ │ ├── input_option_1.json
│ │ │ │ ├── input_option_2.md
│ │ │ │ ├── input_option_3.xml
│ │ │ │ ├── input_option_4.xml
│ │ │ │ ├── Foo4Command.php
│ │ │ │ ├── input_definition_3.md
│ │ │ │ ├── input_option_5.md
│ │ │ │ ├── input_option_6.md
│ │ │ │ ├── input_option_with_default_inf_value.md
│ │ │ │ ├── input_option_3.json
│ │ │ │ ├── input_option_4.json
│ │ │ │ ├── input_option_5.xml
│ │ │ │ ├── input_option_with_style.md
│ │ │ │ ├── input_argument_3.xml
│ │ │ │ ├── input_option_5.json
│ │ │ │ ├── input_option_2.json
│ │ │ │ ├── input_option_6.json
│ │ │ │ ├── input_option_6.xml
│ │ │ │ ├── Foo6Command.php
│ │ │ │ ├── input_argument_with_default_inf_value.xml
│ │ │ │ ├── input_option_with_default_inf_value.json
│ │ │ │ ├── input_option_with_style.json
│ │ │ │ ├── input_argument_with_style.xml
│ │ │ │ ├── input_option_2.xml
│ │ │ │ ├── input_definition_2.xml
│ │ │ │ ├── input_option_with_default_inf_value.xml
│ │ │ │ ├── input_option_with_style_array.md
│ │ │ │ ├── input_definition_3.xml
│ │ │ │ ├── application_renderexception1.txt
│ │ │ │ ├── input_definition_2.json
│ │ │ │ ├── input_option_with_style.xml
│ │ │ │ ├── command_1.json
│ │ │ │ ├── application_renderexception_linebreaks.txt
│ │ │ │ └── input_option_with_style_array.json
│ │ ├── .gitignore
│ │ └── Resources
│ │ │ └── bin
│ │ │ └── hiddeninput.exe
│ ├── finder
│ │ └── Symfony
│ │ │ └── Component
│ │ │ └── Finder
│ │ │ ├── Tests
│ │ │ └── Fixtures
│ │ │ │ ├── one
│ │ │ │ ├── a
│ │ │ │ └── b
│ │ │ │ │ ├── c.neon
│ │ │ │ │ └── d.neon
│ │ │ │ ├── A
│ │ │ │ ├── B
│ │ │ │ │ ├── ab.dat
│ │ │ │ │ └── C
│ │ │ │ │ │ └── abc.dat
│ │ │ │ └── a.dat
│ │ │ │ ├── copy
│ │ │ │ └── A
│ │ │ │ │ ├── B
│ │ │ │ │ ├── ab.dat.copy
│ │ │ │ │ └── C
│ │ │ │ │ │ └── abc.dat.copy
│ │ │ │ │ └── a.dat.copy
│ │ │ │ ├── with space
│ │ │ │ └── foo.txt
│ │ │ │ ├── r+e.gex[c]a(r)s
│ │ │ │ └── dir
│ │ │ │ │ └── bar.dat
│ │ │ │ ├── dolor.txt
│ │ │ │ ├── ipsum.txt
│ │ │ │ └── lorem.txt
│ │ │ └── .gitignore
│ ├── debug
│ │ ├── .gitignore
│ │ └── Tests
│ │ │ ├── Fixtures
│ │ │ ├── PEARClass.php
│ │ │ ├── notPsr0Bis.php
│ │ │ ├── reallyNotPsr0.php
│ │ │ ├── casemismatch.php
│ │ │ ├── psr4
│ │ │ │ └── Psr4CaseMismatch.php
│ │ │ ├── ClassAlias.php
│ │ │ ├── NonDeprecatedInterface.php
│ │ │ ├── DeprecatedClass.php
│ │ │ └── DeprecatedInterface.php
│ │ │ └── Fixtures2
│ │ │ └── RequiredTwice.php
│ ├── dependency-injection
│ │ ├── Tests
│ │ │ └── Fixtures
│ │ │ │ ├── yaml
│ │ │ │ ├── services1.yml
│ │ │ │ ├── nonvalid2.yml
│ │ │ │ ├── nonvalid1.yml
│ │ │ │ ├── null_config.yml
│ │ │ │ ├── bad_services.yml
│ │ │ │ ├── services11.yml
│ │ │ │ ├── bad_format.yml
│ │ │ │ ├── bad_import.yml
│ │ │ │ ├── bad_imports.yml
│ │ │ │ ├── bad_service.yml
│ │ │ │ ├── bad_parameters.yml
│ │ │ │ ├── services7.yml
│ │ │ │ ├── services_dump_load.yml
│ │ │ │ ├── services13.yml
│ │ │ │ ├── services4_bad_import.yml
│ │ │ │ ├── bad_calls.yml
│ │ │ │ ├── services3.yml
│ │ │ │ ├── services23.yml
│ │ │ │ ├── badtag1.yml
│ │ │ │ ├── badtag4.yml
│ │ │ │ ├── bad_types1.yml
│ │ │ │ ├── services24.yml
│ │ │ │ ├── bad_types2.yml
│ │ │ │ ├── badtag2.yml
│ │ │ │ ├── bad_decorates.yml
│ │ │ │ ├── services14.yml
│ │ │ │ ├── tag_name_no_string.yml
│ │ │ │ ├── tag_name_empty_string.yml
│ │ │ │ ├── badtag3.yml
│ │ │ │ ├── services10.yml
│ │ │ │ ├── services8.yml
│ │ │ │ ├── services22.yml
│ │ │ │ ├── services20.yml
│ │ │ │ └── services2.yml
│ │ │ │ ├── directory
│ │ │ │ ├── recurse
│ │ │ │ │ ├── simple.ini
│ │ │ │ │ └── simple.yml
│ │ │ │ ├── import
│ │ │ │ │ └── import.yml
│ │ │ │ └── simple.php
│ │ │ │ ├── ini
│ │ │ │ ├── nonvalid.ini
│ │ │ │ ├── parameters2.ini
│ │ │ │ ├── parameters.ini
│ │ │ │ └── parameters1.ini
│ │ │ │ ├── xml
│ │ │ │ ├── nonvalid.xml
│ │ │ │ ├── withdoctype.xml
│ │ │ │ ├── extensions
│ │ │ │ │ └── services4.xml
│ │ │ │ └── services1.xml
│ │ │ │ ├── php
│ │ │ │ └── simple.php
│ │ │ │ ├── includes
│ │ │ │ └── ProjectWithXsdExtensionInPhar.phar
│ │ │ │ └── containers
│ │ │ │ ├── container17.php
│ │ │ │ ├── container_abstract.php
│ │ │ │ ├── container16.php
│ │ │ │ └── container15.php
│ │ └── .gitignore
│ ├── yaml
│ │ ├── .gitignore
│ │ └── Tests
│ │ │ └── Fixtures
│ │ │ ├── embededPhp.yml
│ │ │ └── sfObjects.yml
│ ├── filesystem
│ │ └── .gitignore
│ └── event-dispatcher
│ │ └── .gitignore
├── phpdocumentor
│ ├── reflection-common
│ │ ├── phpstan.neon
│ │ └── phive.xml
│ ├── type-resolver
│ │ ├── phpstan.neon
│ │ └── phive.xml
│ └── reflection-docblock
│ │ ├── phive.xml
│ │ └── phpstan.neon
├── phpunit
│ ├── php-timer
│ │ ├── .gitattributes
│ │ └── .gitignore
│ ├── phpunit
│ │ ├── tests
│ │ │ ├── _files
│ │ │ │ ├── bar.xml
│ │ │ │ ├── foo.xml
│ │ │ │ ├── expectedFileFormat.txt
│ │ │ │ ├── JsonData
│ │ │ │ │ ├── simpleObject.json
│ │ │ │ │ └── arrayObject.json
│ │ │ │ ├── NoTestCaseClass.php
│ │ │ │ ├── configuration.colors.empty.xml
│ │ │ │ ├── configuration.colors.true.xml
│ │ │ │ ├── CoveredFunction.php
│ │ │ │ ├── configuration.colors.false.xml
│ │ │ │ ├── configuration.colors.invalid.xml
│ │ │ │ ├── DummyException.php
│ │ │ │ ├── NonStatic.php
│ │ │ │ ├── configuration_stop_on_warning.xml
│ │ │ │ ├── NamespaceCoveredFunction.php
│ │ │ │ ├── NotVoidTestCase.php
│ │ │ │ ├── CustomPrinter.php
│ │ │ │ ├── EmptyTestCaseTest.php
│ │ │ │ ├── InheritedTestCase.php
│ │ │ │ ├── configuration.custom-printer.xml
│ │ │ │ ├── Inheritance
│ │ │ │ │ ├── InheritanceA.php
│ │ │ │ │ └── InheritanceB.php
│ │ │ │ ├── AssertionExample.php
│ │ │ │ ├── OverrideTestCase.php
│ │ │ │ ├── ClassWithScalarTypeDeclarations.php
│ │ │ │ ├── ConcreteTest.php
│ │ │ │ ├── Struct.php
│ │ │ │ ├── NoTestCases.php
│ │ │ │ ├── NothingTest.php
│ │ │ │ ├── ConcreteTest.my.php
│ │ │ │ ├── NoArgTestCaseTest.php
│ │ │ │ ├── StopsOnWarningTest.php
│ │ │ │ ├── MockRunner.php
│ │ │ │ ├── configuration.suites.xml
│ │ │ │ ├── Failure.php
│ │ │ │ ├── ThrowNoExceptionTestCase.php
│ │ │ │ ├── Success.php
│ │ │ │ ├── TestTestError.php
│ │ │ │ ├── phpt-for-coverage.phpt
│ │ │ │ ├── AbstractTest.php
│ │ │ │ ├── TestSkipped.php
│ │ │ │ ├── configuration.one-file-suite.xml
│ │ │ │ ├── TestGeneratorMaker.php
│ │ │ │ ├── TestIncomplete.php
│ │ │ │ ├── WasRun.php
│ │ │ │ ├── IncompleteTest.php
│ │ │ │ ├── OneTestCase.php
│ │ │ │ ├── phpt-xfail.phpt
│ │ │ │ ├── phpunit-example-extension
│ │ │ │ │ ├── tools
│ │ │ │ │ │ └── phpunit.d
│ │ │ │ │ │ │ └── phpunit-example-extension-1.0.1.phar
│ │ │ │ │ └── tests
│ │ │ │ │ │ └── OneTest.php
│ │ │ │ ├── IniTest.php
│ │ │ │ ├── CoverageNoneTest.php
│ │ │ │ ├── NotPublicTestCase.php
│ │ │ │ ├── ThrowExceptionTestCase.php
│ │ │ │ ├── AssertionExampleTest.php
│ │ │ │ ├── SampleClass.php
│ │ │ │ ├── CoverageFunctionTest.php
│ │ │ │ ├── CoverageNamespacedFunctionTest.php
│ │ │ │ ├── TestAutoreferenced.php
│ │ │ │ ├── Calculator.php
│ │ │ │ ├── ParseTestMethodAnnotationsMock.php
│ │ │ │ ├── ChangeCurrentWorkingDirectoryTest.php
│ │ │ │ ├── IgnoreCodeCoverageClass.php
│ │ │ │ ├── CoverageClassTest.php
│ │ │ │ ├── CoverageFunctionParenthesesTest.php
│ │ │ │ ├── DataProviderIssue2859
│ │ │ │ │ └── phpunit.xml
│ │ │ │ ├── DataProviderIssue2833
│ │ │ │ │ └── SecondTest.php
│ │ │ │ ├── FatalTest.php
│ │ │ │ ├── CoveragePrivateTest.php
│ │ │ │ ├── CoveragePublicTest.php
│ │ │ │ ├── BaseTestListenerSample.php
│ │ │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php
│ │ │ │ ├── CoverageMethodTest.php
│ │ │ │ ├── CoverageNotPublicTest.php
│ │ │ │ ├── CoverageNotPrivateTest.php
│ │ │ │ ├── CoverageProtectedTest.php
│ │ │ │ ├── CoverageClassExtendedTest.php
│ │ │ │ ├── CoverageNotProtectedTest.php
│ │ │ │ ├── NamespaceCoverageClassTest.php
│ │ │ │ ├── CoverageMethodOneLineAnnotationTest.php
│ │ │ │ ├── CoverageMethodParenthesesTest.php
│ │ │ │ ├── NamespaceCoveragePublicTest.php
│ │ │ │ ├── CoverageNothingTest.php
│ │ │ │ ├── NamespaceCoverageMethodTest.php
│ │ │ │ ├── NamespaceCoverageNotPublicTest.php
│ │ │ │ └── NamespaceCoveragePrivateTest.php
│ │ │ ├── end-to-end
│ │ │ │ ├── _files
│ │ │ │ │ ├── expect_external.txt
│ │ │ │ │ ├── phpt-env.expected.txt
│ │ │ │ │ └── phpt_external.php
│ │ │ │ ├── regression
│ │ │ │ │ ├── GitHub
│ │ │ │ │ │ ├── 74
│ │ │ │ │ │ │ ├── NewException.php
│ │ │ │ │ │ │ └── Issue74Test.php
│ │ │ │ │ │ ├── 322
│ │ │ │ │ │ │ └── phpunit322.xml
│ │ │ │ │ │ ├── 503
│ │ │ │ │ │ │ └── Issue503Test.php
│ │ │ │ │ │ ├── 797
│ │ │ │ │ │ │ ├── bootstrap797.php
│ │ │ │ │ │ │ └── Issue797Test.php
│ │ │ │ │ │ ├── 873
│ │ │ │ │ │ │ └── Issue873Test.php
│ │ │ │ │ │ ├── 1216
│ │ │ │ │ │ │ ├── bootstrap1216.php
│ │ │ │ │ │ │ ├── phpunit1216.xml
│ │ │ │ │ │ │ └── Issue1216Test.php
│ │ │ │ │ │ ├── 1265
│ │ │ │ │ │ │ ├── phpunit1265.xml
│ │ │ │ │ │ │ └── Issue1265Test.php
│ │ │ │ │ │ ├── 1330
│ │ │ │ │ │ │ ├── phpunit1330.xml
│ │ │ │ │ │ │ └── Issue1330Test.php
│ │ │ │ │ │ ├── 1351
│ │ │ │ │ │ │ └── ChildProcessClass1351.php
│ │ │ │ │ │ ├── 1437
│ │ │ │ │ │ │ └── Issue1437Test.php
│ │ │ │ │ │ ├── 1468
│ │ │ │ │ │ │ └── Issue1468Test.php
│ │ │ │ │ │ ├── 1471
│ │ │ │ │ │ │ └── Issue1471Test.php
│ │ │ │ │ │ ├── 1570
│ │ │ │ │ │ │ └── Issue1570Test.php
│ │ │ │ │ │ ├── 2145
│ │ │ │ │ │ │ └── Issue2145Test.php
│ │ │ │ │ │ ├── 2158
│ │ │ │ │ │ │ └── constant.inc
│ │ │ │ │ │ ├── 2435
│ │ │ │ │ │ │ └── Issue2435Test.php
│ │ │ │ │ │ ├── 2448
│ │ │ │ │ │ │ └── Test.php
│ │ │ │ │ │ ├── 2591
│ │ │ │ │ │ │ ├── bootstrapWithBootstrap.php
│ │ │ │ │ │ │ ├── bootstrapWithBootstrapNoGlobal.php
│ │ │ │ │ │ │ └── bootstrapNoBootstrap.php
│ │ │ │ │ │ ├── 2731
│ │ │ │ │ │ │ └── Issue2731Test.php
│ │ │ │ │ │ ├── 2811
│ │ │ │ │ │ │ └── Issue2811Test.php
│ │ │ │ │ │ └── 2972
│ │ │ │ │ │ │ ├── issue-2972-test.phpt
│ │ │ │ │ │ │ └── unconventiallyNamedIssue2972Test.php
│ │ │ │ │ └── Trac
│ │ │ │ │ │ ├── 684
│ │ │ │ │ │ └── Issue684Test.php
│ │ │ │ │ │ └── 783
│ │ │ │ │ │ ├── OneTest.php
│ │ │ │ │ │ └── TwoTest.php
│ │ │ │ ├── phpt-external.phpt
│ │ │ │ ├── phpt-args.phpt
│ │ │ │ ├── phpt-stdin.phpt
│ │ │ │ ├── phpt-env.phpt
│ │ │ │ └── phpt-stderr.phpt
│ │ │ └── fail
│ │ │ │ └── fail.phpt
│ │ ├── .gitattributes
│ │ ├── .editorconfig
│ │ └── src
│ │ │ └── Util
│ │ │ └── PHP
│ │ │ └── eval-stdin.php
│ ├── php-code-coverage
│ │ ├── .gitattributes
│ │ ├── tests
│ │ │ ├── _files
│ │ │ │ ├── CoveredFunction.php
│ │ │ │ ├── source_without_ignore.php
│ │ │ │ ├── ignored-lines-text.txt
│ │ │ │ ├── CoverageNoneTest.php
│ │ │ │ ├── CoverageFunctionTest.php
│ │ │ │ ├── BankAccount-text.txt
│ │ │ │ ├── source_without_namespace.php
│ │ │ │ ├── CoverageClassTest.php
│ │ │ │ ├── CoverageFunctionParenthesesTest.php
│ │ │ │ ├── CoveragePrivateTest.php
│ │ │ │ ├── CoveragePublicTest.php
│ │ │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php
│ │ │ │ ├── CoverageMethodTest.php
│ │ │ │ ├── CoverageNotPublicTest.php
│ │ │ │ ├── CoverageNotPrivateTest.php
│ │ │ │ ├── CoverageProtectedTest.php
│ │ │ │ ├── CoverageClassExtendedTest.php
│ │ │ │ ├── CoverageMethodOneLineAnnotationTest.php
│ │ │ │ ├── CoverageNotProtectedTest.php
│ │ │ │ ├── NamespaceCoverageClassTest.php
│ │ │ │ ├── class-with-anonymous-function-text.txt
│ │ │ │ └── source_with_namespace.php
│ │ │ └── bootstrap.php
│ │ ├── .gitignore
│ │ ├── src
│ │ │ └── Report
│ │ │ │ └── Html
│ │ │ │ └── Renderer
│ │ │ │ └── Template
│ │ │ │ └── fonts
│ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ │ └── glyphicons-halflings-regular.woff2
│ │ └── .github
│ │ │ └── CONTRIBUTING.md
│ ├── php-file-iterator
│ │ ├── .gitattributes
│ │ └── .gitignore
│ ├── php-text-template
│ │ ├── .gitattributes
│ │ └── .gitignore
│ ├── php-token-stream
│ │ ├── .gitattributes
│ │ ├── .gitignore
│ │ └── tests
│ │ │ └── _fixture
│ │ │ ├── issue19.php
│ │ │ ├── classInNamespace.php
│ │ │ ├── classUsesNamespacedFunction.php
│ │ │ ├── issue30.php
│ │ │ ├── classInScopedNamespace.php
│ │ │ ├── source2.php
│ │ │ ├── class_with_method_named_empty.php
│ │ │ ├── classExtendsNamespacedClass.php
│ │ │ ├── multipleNamespacesWithOneClassUsingBraces.php
│ │ │ ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php
│ │ │ ├── closure.php
│ │ │ ├── source5.php
│ │ │ └── php-code-coverage-issue-424.php
│ └── phpunit-mock-objects
│ │ ├── .gitattributes
│ │ ├── .gitignore
│ │ ├── src
│ │ └── Generator
│ │ │ ├── deprecation.tpl.dist
│ │ │ ├── trait_class.tpl.dist
│ │ │ ├── wsdl_method.tpl.dist
│ │ │ ├── mocked_clone.tpl.dist
│ │ │ ├── unmocked_clone.tpl.dist
│ │ │ ├── wsdl_class.tpl.dist
│ │ │ ├── mocked_class_method.tpl.dist
│ │ │ └── mocked_static_method.tpl.dist
│ │ ├── tests
│ │ ├── _fixture
│ │ │ ├── AnInterface.php
│ │ │ ├── AnotherInterface.php
│ │ │ ├── TraversableMockTestInterface.php
│ │ │ ├── Bar.php
│ │ │ ├── AnInterfaceWithReturnType.php
│ │ │ ├── ClassWithSelfTypeHint.php
│ │ │ ├── InterfaceWithStaticMethod.php
│ │ │ ├── ClassWithStaticMethod.php
│ │ │ ├── InterfaceWithSemiReservedMethodName.php
│ │ │ ├── StringableClass.php
│ │ │ ├── Foo.php
│ │ │ ├── MockTestInterface.php
│ │ │ ├── FunctionCallback.php
│ │ │ ├── SomeClass.php
│ │ │ ├── AbstractMockTestClass.php
│ │ │ ├── StaticMockTestClass.php
│ │ │ ├── MethodCallbackByReference.php
│ │ │ └── AbstractTrait.php
│ │ └── bootstrap.php
│ │ └── CONTRIBUTING.md
├── behat
│ ├── gherkin
│ │ ├── libpath.php
│ │ ├── tests
│ │ │ └── Behat
│ │ │ │ └── Gherkin
│ │ │ │ └── Fixtures
│ │ │ │ ├── directories
│ │ │ │ └── phps
│ │ │ │ │ └── some_file.php
│ │ │ │ ├── features
│ │ │ │ ├── background.feature
│ │ │ │ ├── pystring.feature
│ │ │ │ ├── clean_tags.feature
│ │ │ │ ├── ja_addition.feature
│ │ │ │ ├── ru_commented.feature
│ │ │ │ ├── trimpystring.feature
│ │ │ │ ├── empty_scenario.feature
│ │ │ │ ├── undefined_multiline_args.feature
│ │ │ │ ├── long_title_feature.feature
│ │ │ │ ├── test_unit.feature
│ │ │ │ └── background_title.feature
│ │ │ │ └── etalons
│ │ │ │ ├── commented_out.yml
│ │ │ │ └── ru_commented.yml
│ │ ├── .gitignore
│ │ └── autoload.php
│ └── behat
│ │ ├── .gitignore
│ │ ├── src
│ │ └── Behat
│ │ │ └── Behat
│ │ │ └── Util
│ │ │ └── data
│ │ │ ├── x09.php
│ │ │ ├── x1f.php
│ │ │ ├── x20.php
│ │ │ ├── x21.php
│ │ │ ├── x22.php
│ │ │ ├── x23.php
│ │ │ ├── x4d.php
│ │ │ ├── x4e.php
│ │ │ ├── x4f.php
│ │ │ ├── x50.php
│ │ │ ├── x51.php
│ │ │ ├── x58.php
│ │ │ ├── x59.php
│ │ │ ├── x5a.php
│ │ │ ├── x5b.php
│ │ │ ├── x5c.php
│ │ │ ├── x5d.php
│ │ │ ├── x5e.php
│ │ │ ├── x5f.php
│ │ │ ├── x60.php
│ │ │ ├── x61.php
│ │ │ ├── x62.php
│ │ │ ├── x63.php
│ │ │ ├── x64.php
│ │ │ ├── x65.php
│ │ │ ├── x66.php
│ │ │ ├── x67.php
│ │ │ ├── x68.php
│ │ │ ├── x69.php
│ │ │ ├── x6a.php
│ │ │ ├── x6b.php
│ │ │ ├── x6c.php
│ │ │ ├── x6d.php
│ │ │ ├── x6e.php
│ │ │ ├── x6f.php
│ │ │ ├── x70.php
│ │ │ ├── xd0.php
│ │ │ ├── xd1.php
│ │ │ ├── xd2.php
│ │ │ ├── xd3.php
│ │ │ ├── xd4.php
│ │ │ ├── xd5.php
│ │ │ └── xd6.php
│ │ ├── chef
│ │ └── cookbooks
│ │ │ └── php54
│ │ │ ├── metadata.rb
│ │ │ └── recipes
│ │ │ └── default.rb
│ │ ├── Berksfile
│ │ ├── behat.yml.dist
│ │ └── Berksfile.lock
├── sendgrid
│ ├── sendgrid
│ │ ├── .env.sample
│ │ ├── sendgrid-php.php
│ │ ├── lib
│ │ │ └── mail
│ │ │ │ └── TypeException.php
│ │ ├── .editorconfig
│ │ ├── .codeclimate.yml
│ │ └── scripts
│ │ │ └── package.sh
│ └── php-http-client
│ │ ├── examples
│ │ └── .env_sample
│ │ ├── .gitignore
│ │ ├── Makefile
│ │ └── use_cases
│ │ └── README.md
├── doctrine
│ └── instantiator
│ │ ├── docs
│ │ └── en
│ │ │ └── sidebar.rst
│ │ ├── phpbench.json
│ │ ├── .github
│ │ └── FUNDING.yml
│ │ └── src
│ │ └── Doctrine
│ │ └── Instantiator
│ │ └── Exception
│ │ └── ExceptionInterface.php
├── webmozart
│ └── assert
│ │ ├── ci
│ │ └── composer.json
│ │ └── .editorconfig
├── phar-io
│ ├── version
│ │ ├── .gitignore
│ │ ├── src
│ │ │ └── InvalidVersionException.php
│ │ └── phive.xml
│ └── manifest
│ │ ├── .gitignore
│ │ ├── tests
│ │ └── _fixture
│ │ │ └── test.phar
│ │ ├── src
│ │ └── exceptions
│ │ │ ├── ManifestLoaderException.php
│ │ │ ├── ManifestElementException.php
│ │ │ ├── ManifestDocumentException.php
│ │ │ └── ManifestDocumentMapperException.php
│ │ └── phive.xml
├── theseer
│ └── tokenizer
│ │ ├── tests
│ │ └── _files
│ │ │ └── empty.xml
│ │ ├── .gitignore
│ │ ├── src
│ │ ├── Exception.php
│ │ ├── NamespaceUriException.php
│ │ └── TokenCollectionException.php
│ │ └── phive.xml
├── myclabs
│ └── deep-copy
│ │ ├── doc
│ │ ├── clone.png
│ │ ├── graph.png
│ │ ├── deep-copy.png
│ │ └── deep-clone.png
│ │ └── src
│ │ └── DeepCopy
│ │ ├── Exception
│ │ ├── CloneException.php
│ │ └── PropertyException.php
│ │ ├── TypeFilter
│ │ ├── Spl
│ │ │ └── SplDoublyLinkedList.php
│ │ ├── TypeFilter.php
│ │ └── ShallowCopyFilter.php
│ │ ├── Matcher
│ │ └── Matcher.php
│ │ └── Filter
│ │ └── KeepFilter.php
├── facebook
│ └── graph-sdk
│ │ ├── phpcs.xml.dist
│ │ └── CODE_OF_CONDUCT.md
└── autoload.php
├── bin
├── behat
└── phpunit
├── .gitignore
├── composer.phar
├── contents.html
├── images
├── bg_suburb.jpg
├── imgGirl.jpg
├── divBackground-blue.jpg
├── divBackground-white.jpg
├── livro-caixa-72x84.jpg
└── livro-caixa-decotaivo-.jpg
├── assets
├── ico
│ ├── favicon.png
│ ├── apple-touch-icon-114-precomposed.png
│ ├── apple-touch-icon-144-precomposed.png
│ ├── apple-touch-icon-57-precomposed.png
│ └── apple-touch-icon-72-precomposed.png
├── img
│ └── backgrounds
│ │ ├── 1.jpg
│ │ ├── 2.jpg
│ │ ├── 3.jpg
│ │ ├── 1@2x.jpg
│ │ ├── 2@2x.jpg
│ │ └── 3@2x.jpg
├── font-awesome
│ ├── fonts
│ │ ├── FontAwesome.otf
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.ttf
│ │ ├── fontawesome-webfont.woff
│ │ └── fontawesome-webfont.woff2
│ ├── less
│ │ └── fixed-width.less
│ └── scss
│ │ └── _fixed-width.scss
├── js
│ └── placeholder.js
└── bootstrap
│ └── fonts
│ ├── glyphicons-halflings-regular.eot
│ ├── glyphicons-halflings-regular.ttf
│ ├── glyphicons-halflings-regular.woff
│ └── glyphicons-halflings-regular.woff2
├── phpSecurePages
├── readme.txt
├── images
│ └── logo.gif
└── lng
│ ├── lng_kor.php
│ ├── lng_czech.php
│ ├── lng_arabic.php
│ ├── lng_catalan.php
│ ├── lng_danish.php
│ ├── lng_estonian.php
│ ├── lng_finnish.php
│ ├── lng_finnish2.php
│ ├── lng_french.php
│ ├── lng_german.php
│ ├── lng_italian.php
│ ├── lng_latvian.php
│ ├── lng_polish.php
│ ├── lng_romanian.php
│ ├── lng_slovak.php
│ ├── lng_spanish.php
│ ├── lng_swedish.php
│ ├── lng_turkish.php
│ ├── lng_bulgarian.php
│ ├── lng_chinese-gb.php
│ ├── lng_icelandic.php
│ ├── lng_lithuanian.php
│ ├── lng_macedonian.php
│ ├── lng_norwegian.php
│ ├── lng_portuguese.php
│ ├── lng_slovenian.php
│ ├── lng_spanish-LA.php
│ ├── lng_chinese-big5.php
│ ├── lng_japanese-euc.php
│ ├── lng_japanese-sjis.php
│ ├── lng_luxembourgish.php
│ ├── lng_russian-koi8r.php
│ ├── lng_russian-cp1251.php
│ └── lng_brazilian-portuguese.php
├── Instalar
├── ModelLivroCaixa.mwb
├── ModelLivroCaixa.mwb.bak
└── ModelLivroCaixa.mwb.beforefix
├── features
├── example1.feature
└── example.feature
├── fonts
├── glyphicons-halflings-regular.eot
├── glyphicons-halflings-regular.ttf
├── glyphicons-halflings-regular.woff
└── glyphicons-halflings-regular.woff2
├── nbproject
├── private
│ └── private.properties
├── project.properties
└── project.xml
└── composer.json
/LICENSE.md:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/css/extrastyle.txt:
--------------------------------------------------------------------------------
1 | es_Default.css
--------------------------------------------------------------------------------
/vendor/psr/log/.gitignore:
--------------------------------------------------------------------------------
1 | vendor
2 |
--------------------------------------------------------------------------------
/bin/behat:
--------------------------------------------------------------------------------
1 | ../vendor/behat/behat/bin/behat
--------------------------------------------------------------------------------
/vendor/phpmailer/phpmailer/VERSION:
--------------------------------------------------------------------------------
1 | 5.2.28
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .idea/
2 | .env
3 | .env.local
4 |
--------------------------------------------------------------------------------
/bin/phpunit:
--------------------------------------------------------------------------------
1 | ../vendor/phpunit/phpunit/phpunit
--------------------------------------------------------------------------------
/vendor/sebastian/version/.gitignore:
--------------------------------------------------------------------------------
1 | /.idea
2 |
--------------------------------------------------------------------------------
/vendor/symfony/config/Tests/Fixtures/foo.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/phpdocumentor/reflection-common/phpstan.neon:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/config/Tests/Fixtures/Again/foo.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/translation/Tests/fixtures/empty.csv:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/translation/Tests/fixtures/empty.ini:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/translation/Tests/fixtures/empty.json:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/translation/Tests/fixtures/empty.mo:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/translation/Tests/fixtures/empty.po:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/translation/Tests/fixtures/empty.xlf:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/translation/Tests/fixtures/empty.yml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-timer/.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/sebastian/version/.gitattributes:
--------------------------------------------------------------------------------
1 | *.php diff=php
2 |
--------------------------------------------------------------------------------
/css/es_Default.css:
--------------------------------------------------------------------------------
1 | /*! default extra styles no changes */
2 |
--------------------------------------------------------------------------------
/vendor/behat/gherkin/libpath.php:
--------------------------------------------------------------------------------
1 | Console Tool
--------------------------------------------------------------------------------
/vendor/symfony/dependency-injection/Tests/Fixtures/yaml/nonvalid1.yml:
--------------------------------------------------------------------------------
1 | foo:
2 | bar
3 |
--------------------------------------------------------------------------------
/vendor/symfony/dependency-injection/Tests/Fixtures/yaml/null_config.yml:
--------------------------------------------------------------------------------
1 | project: ~
2 |
--------------------------------------------------------------------------------
/vendor/symfony/event-dispatcher/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/copy/A/B/C/abc.dat.copy:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/translation/Tests/fixtures/resources.dump.json:
--------------------------------------------------------------------------------
1 | {"foo":"\u0022bar\u0022"}
--------------------------------------------------------------------------------
/vendor/symfony/translation/Tests/fixtures/resources.json:
--------------------------------------------------------------------------------
1 | {
2 | "foo": "bar"
3 | }
--------------------------------------------------------------------------------
/vendor/symfony/yaml/Tests/Fixtures/embededPhp.yml:
--------------------------------------------------------------------------------
1 | value:
2 |
--------------------------------------------------------------------------------
/composer.phar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/composer.phar
--------------------------------------------------------------------------------
/contents.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/contents.html
--------------------------------------------------------------------------------
/vendor/behat/behat/.gitignore:
--------------------------------------------------------------------------------
1 | *.tgz
2 | *.phar
3 | behat.yml
4 | vendor
5 | composer.lock
6 |
--------------------------------------------------------------------------------
/vendor/behat/gherkin/autoload.php:
--------------------------------------------------------------------------------
1 | argument_name
2 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_option_1.txt:
--------------------------------------------------------------------------------
1 | -o, --option_name
2 |
--------------------------------------------------------------------------------
/vendor/symfony/dependency-injection/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/vendor/symfony/dependency-injection/Tests/Fixtures/yaml/bad_services.yml:
--------------------------------------------------------------------------------
1 | services: foo
2 |
--------------------------------------------------------------------------------
/vendor/symfony/dependency-injection/Tests/Fixtures/yaml/services11.yml:
--------------------------------------------------------------------------------
1 | foobarfoobar: {}
2 |
--------------------------------------------------------------------------------
/vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/r+e.gex[c]a(r)s/dir/bar.dat:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-token-stream/tests/_fixture/issue19.php:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/_files/configuration.colors.true.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/vendor/sebastian/code-unit-reverse-lookup/.gitignore:
--------------------------------------------------------------------------------
1 | /.idea
2 | /composer.lock
3 | /vendor
4 |
5 |
--------------------------------------------------------------------------------
/vendor/sebastian/comparator/.gitignore:
--------------------------------------------------------------------------------
1 | /.idea
2 | /.php_cs.cache
3 | /composer.lock
4 | /vendor
5 |
--------------------------------------------------------------------------------
/vendor/sebastian/global-state/.gitignore:
--------------------------------------------------------------------------------
1 | /.idea
2 | /.php_cs.cache
3 | /composer.lock
4 | /vendor
5 |
--------------------------------------------------------------------------------
/vendor/sendgrid/sendgrid/sendgrid-php.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/dependency-injection/Tests/Fixtures/yaml/bad_format.yml:
--------------------------------------------------------------------------------
1 | parameters:
2 | FOO: bar
3 |
--------------------------------------------------------------------------------
/vendor/symfony/dependency-injection/Tests/Fixtures/yaml/bad_import.yml:
--------------------------------------------------------------------------------
1 | imports:
2 | - foo.yml
3 |
--------------------------------------------------------------------------------
/vendor/symfony/dependency-injection/Tests/Fixtures/yaml/bad_imports.yml:
--------------------------------------------------------------------------------
1 | imports:
2 | foo:bar
3 |
--------------------------------------------------------------------------------
/vendor/symfony/dependency-injection/Tests/Fixtures/yaml/bad_service.yml:
--------------------------------------------------------------------------------
1 | services:
2 | foo: bar
3 |
--------------------------------------------------------------------------------
/vendor/symfony/finder/Symfony/Component/Finder/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/vendor/symfony/translation/Tests/fixtures/messages_linear.yml:
--------------------------------------------------------------------------------
1 | foo.bar1: value1
2 | foo.bar2: value2
3 |
--------------------------------------------------------------------------------
/vendor/symfony/translation/Tests/fixtures/valid.csv:
--------------------------------------------------------------------------------
1 | foo;bar
2 | bar;"foo
3 | foo"
4 | "foo;foo";bar
5 |
--------------------------------------------------------------------------------
/assets/ico/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/assets/ico/favicon.png
--------------------------------------------------------------------------------
/vendor/behat/behat/src/Behat/Behat/Util/data/x09.php:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/vendor/sebastian/diff/.gitignore:
--------------------------------------------------------------------------------
1 | /.idea
2 | /composer.lock
3 | /vendor
4 | /.php_cs.cache
5 | /from.txt.orig
--------------------------------------------------------------------------------
/vendor/sebastian/object-reflector/.gitignore:
--------------------------------------------------------------------------------
1 | /.idea
2 | /.php_cs.cache
3 | /composer.lock
4 | /vendor
5 |
--------------------------------------------------------------------------------
/vendor/symfony/config/Tests/Fixtures/Util/invalid.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/vendor/symfony/dependency-injection/Tests/Fixtures/yaml/bad_parameters.yml:
--------------------------------------------------------------------------------
1 | parameters:
2 | foo:bar
3 |
--------------------------------------------------------------------------------
/vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/dolor.txt:
--------------------------------------------------------------------------------
1 | dolor sit amet
2 | DOLOR SIT AMET
--------------------------------------------------------------------------------
/vendor/symfony/translation/Tests/fixtures/messages.yml:
--------------------------------------------------------------------------------
1 | foo:
2 | bar1: value1
3 | bar2: value2
4 |
--------------------------------------------------------------------------------
/phpSecurePages/readme.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/phpSecurePages/readme.txt
--------------------------------------------------------------------------------
/vendor/behat/behat/chef/cookbooks/php54/metadata.rb:
--------------------------------------------------------------------------------
1 | recipe "php54::default", "Adds PHP5.4 repository to APT"
2 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-text-template/.gitignore:
--------------------------------------------------------------------------------
1 | /composer.lock
2 | /composer.phar
3 | /.idea
4 | /vendor
5 |
6 |
--------------------------------------------------------------------------------
/vendor/sebastian/exporter/.gitignore:
--------------------------------------------------------------------------------
1 | /.idea
2 | /composer.lock
3 | /vendor
4 | /.php_cs
5 | /.php_cs.cache
6 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_argument_2.txt:
--------------------------------------------------------------------------------
1 | argument_name argument description
2 |
--------------------------------------------------------------------------------
/vendor/symfony/dependency-injection/Tests/Fixtures/directory/recurse/simple.ini:
--------------------------------------------------------------------------------
1 | [parameters]
2 | ini = ini
3 |
--------------------------------------------------------------------------------
/vendor/symfony/translation/Tests/fixtures/resourcebundle/dat/en.txt:
--------------------------------------------------------------------------------
1 | en{
2 | symfony{"Symfony is great"}
3 | }
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/CoveredFunction.php:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/vendor/symfony/dependency-injection/Tests/Fixtures/directory/recurse/simple.yml:
--------------------------------------------------------------------------------
1 | parameters:
2 | yaml: yaml
3 |
--------------------------------------------------------------------------------
/vendor/symfony/dependency-injection/Tests/Fixtures/ini/nonvalid.ini:
--------------------------------------------------------------------------------
1 | {NOT AN INI FILE}
2 | {JUST A PLAIN TEXT FILE}
3 |
--------------------------------------------------------------------------------
/vendor/symfony/dependency-injection/Tests/Fixtures/ini/parameters2.ini:
--------------------------------------------------------------------------------
1 | [parameters]
2 | imported_from_ini = true
3 |
--------------------------------------------------------------------------------
/vendor/symfony/dependency-injection/Tests/Fixtures/xml/nonvalid.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/vendor/symfony/dependency-injection/Tests/Fixtures/yaml/services7.yml:
--------------------------------------------------------------------------------
1 | services:
2 | foo: { class: BarClass }
3 |
--------------------------------------------------------------------------------
/vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/ipsum.txt:
--------------------------------------------------------------------------------
1 | ipsum dolor sit amet
2 | IPSUM DOLOR SIT AMET
--------------------------------------------------------------------------------
/vendor/symfony/translation/Tests/fixtures/resourcebundle/dat/fr.txt:
--------------------------------------------------------------------------------
1 | fr{
2 | symfony{"Symfony est génial"}
3 | }
--------------------------------------------------------------------------------
/vendor/symfony/translation/Tests/fixtures/resources.php:
--------------------------------------------------------------------------------
1 | 'bar',
5 | );
6 |
--------------------------------------------------------------------------------
/Instalar/ModelLivroCaixa.mwb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/Instalar/ModelLivroCaixa.mwb
--------------------------------------------------------------------------------
/assets/img/backgrounds/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/assets/img/backgrounds/1.jpg
--------------------------------------------------------------------------------
/assets/img/backgrounds/2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/assets/img/backgrounds/2.jpg
--------------------------------------------------------------------------------
/assets/img/backgrounds/3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/assets/img/backgrounds/3.jpg
--------------------------------------------------------------------------------
/images/divBackground-blue.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/images/divBackground-blue.jpg
--------------------------------------------------------------------------------
/images/divBackground-white.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/images/divBackground-white.jpg
--------------------------------------------------------------------------------
/images/livro-caixa-72x84.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/images/livro-caixa-72x84.jpg
--------------------------------------------------------------------------------
/phpSecurePages/images/logo.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/phpSecurePages/images/logo.gif
--------------------------------------------------------------------------------
/phpSecurePages/lng/lng_kor.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/phpSecurePages/lng/lng_kor.php
--------------------------------------------------------------------------------
/vendor/sebastian/environment/.gitignore:
--------------------------------------------------------------------------------
1 | /.idea
2 | /vendor
3 | /composer.lock
4 | /composer.phar
5 | /.php_cs.cache
6 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_definition_1.json:
--------------------------------------------------------------------------------
1 | {
2 | "arguments": [],
3 | "options": []
4 | }
5 |
--------------------------------------------------------------------------------
/vendor/symfony/dependency-injection/Tests/Fixtures/ini/parameters.ini:
--------------------------------------------------------------------------------
1 | [parameters]
2 | foo = bar
3 | bar = %foo%
4 |
--------------------------------------------------------------------------------
/vendor/symfony/dependency-injection/Tests/Fixtures/ini/parameters1.ini:
--------------------------------------------------------------------------------
1 | [parameters]
2 | FOO = foo
3 | baz = baz
4 |
--------------------------------------------------------------------------------
/vendor/webmozart/assert/ci/composer.json:
--------------------------------------------------------------------------------
1 | {
2 | "require": {
3 | "vimeo/psalm": "^3.8.5"
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/Instalar/ModelLivroCaixa.mwb.bak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/Instalar/ModelLivroCaixa.mwb.bak
--------------------------------------------------------------------------------
/assets/img/backgrounds/1@2x.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/assets/img/backgrounds/1@2x.jpg
--------------------------------------------------------------------------------
/assets/img/backgrounds/2@2x.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/assets/img/backgrounds/2@2x.jpg
--------------------------------------------------------------------------------
/assets/img/backgrounds/3@2x.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/assets/img/backgrounds/3@2x.jpg
--------------------------------------------------------------------------------
/phpSecurePages/lng/lng_czech.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/phpSecurePages/lng/lng_czech.php
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/_files/DummyException.php:
--------------------------------------------------------------------------------
1 | Arguments:
2 | argument_name
3 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_option_3.txt:
--------------------------------------------------------------------------------
1 | -o, --option_name=OPTION_NAME option description
2 |
--------------------------------------------------------------------------------
/vendor/symfony/dependency-injection/Tests/Fixtures/directory/import/import.yml:
--------------------------------------------------------------------------------
1 | imports:
2 | - { resource: ../recurse/ }
3 |
--------------------------------------------------------------------------------
/vendor/symfony/dependency-injection/Tests/Fixtures/php/simple.php:
--------------------------------------------------------------------------------
1 | setParameter('foo', 'foo');
4 |
--------------------------------------------------------------------------------
/vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/lorem.txt:
--------------------------------------------------------------------------------
1 | lorem ipsum dolor sit amet
2 | LOREM IPSUM DOLOR SIT AMET
--------------------------------------------------------------------------------
/features/example1.feature:
--------------------------------------------------------------------------------
1 | Feature:
2 | Scenario:
3 | Given some step with "string" argument
4 | And number step with 23
--------------------------------------------------------------------------------
/images/livro-caixa-decotaivo-.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/images/livro-caixa-decotaivo-.jpg
--------------------------------------------------------------------------------
/phpSecurePages/lng/lng_arabic.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/phpSecurePages/lng/lng_arabic.php
--------------------------------------------------------------------------------
/phpSecurePages/lng/lng_catalan.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/phpSecurePages/lng/lng_catalan.php
--------------------------------------------------------------------------------
/phpSecurePages/lng/lng_danish.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/phpSecurePages/lng/lng_danish.php
--------------------------------------------------------------------------------
/phpSecurePages/lng/lng_estonian.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/phpSecurePages/lng/lng_estonian.php
--------------------------------------------------------------------------------
/phpSecurePages/lng/lng_finnish.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/phpSecurePages/lng/lng_finnish.php
--------------------------------------------------------------------------------
/phpSecurePages/lng/lng_finnish2.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/phpSecurePages/lng/lng_finnish2.php
--------------------------------------------------------------------------------
/phpSecurePages/lng/lng_french.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/phpSecurePages/lng/lng_french.php
--------------------------------------------------------------------------------
/phpSecurePages/lng/lng_german.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/phpSecurePages/lng/lng_german.php
--------------------------------------------------------------------------------
/phpSecurePages/lng/lng_italian.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/phpSecurePages/lng/lng_italian.php
--------------------------------------------------------------------------------
/phpSecurePages/lng/lng_latvian.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/phpSecurePages/lng/lng_latvian.php
--------------------------------------------------------------------------------
/phpSecurePages/lng/lng_polish.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/phpSecurePages/lng/lng_polish.php
--------------------------------------------------------------------------------
/phpSecurePages/lng/lng_romanian.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/phpSecurePages/lng/lng_romanian.php
--------------------------------------------------------------------------------
/phpSecurePages/lng/lng_slovak.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/phpSecurePages/lng/lng_slovak.php
--------------------------------------------------------------------------------
/phpSecurePages/lng/lng_spanish.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/phpSecurePages/lng/lng_spanish.php
--------------------------------------------------------------------------------
/phpSecurePages/lng/lng_swedish.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/phpSecurePages/lng/lng_swedish.php
--------------------------------------------------------------------------------
/phpSecurePages/lng/lng_turkish.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/phpSecurePages/lng/lng_turkish.php
--------------------------------------------------------------------------------
/vendor/phar-io/version/.gitignore:
--------------------------------------------------------------------------------
1 | /.idea
2 | /.php_cs.cache
3 | /composer.lock
4 | /src/autoload.php
5 | /tools
6 | /vendor
7 |
8 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/.gitignore:
--------------------------------------------------------------------------------
1 | /tests/_files/tmp
2 | /vendor
3 | /composer.lock
4 | /.idea
5 | /.php_cs.cache
6 |
7 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/source_without_ignore.php:
--------------------------------------------------------------------------------
1 | Options:
2 | -o, --option_name
3 |
--------------------------------------------------------------------------------
/vendor/symfony/dependency-injection/Tests/Fixtures/directory/simple.php:
--------------------------------------------------------------------------------
1 | setParameter('php', 'php');
4 |
--------------------------------------------------------------------------------
/vendor/symfony/dependency-injection/Tests/Fixtures/xml/withdoctype.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/vendor/theseer/tokenizer/tests/_files/empty.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/features/example.feature:
--------------------------------------------------------------------------------
1 | Feature:
2 | Scenario:
3 | Given some step with "Hello World" argument
4 | Then i have "Hello World!"
--------------------------------------------------------------------------------
/phpSecurePages/lng/lng_bulgarian.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/phpSecurePages/lng/lng_bulgarian.php
--------------------------------------------------------------------------------
/phpSecurePages/lng/lng_chinese-gb.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/phpSecurePages/lng/lng_chinese-gb.php
--------------------------------------------------------------------------------
/phpSecurePages/lng/lng_icelandic.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/phpSecurePages/lng/lng_icelandic.php
--------------------------------------------------------------------------------
/phpSecurePages/lng/lng_lithuanian.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/phpSecurePages/lng/lng_lithuanian.php
--------------------------------------------------------------------------------
/phpSecurePages/lng/lng_macedonian.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/phpSecurePages/lng/lng_macedonian.php
--------------------------------------------------------------------------------
/phpSecurePages/lng/lng_norwegian.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/phpSecurePages/lng/lng_norwegian.php
--------------------------------------------------------------------------------
/phpSecurePages/lng/lng_portuguese.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/phpSecurePages/lng/lng_portuguese.php
--------------------------------------------------------------------------------
/phpSecurePages/lng/lng_slovenian.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/phpSecurePages/lng/lng_slovenian.php
--------------------------------------------------------------------------------
/phpSecurePages/lng/lng_spanish-LA.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/phpSecurePages/lng/lng_spanish-LA.php
--------------------------------------------------------------------------------
/vendor/phpunit/php-token-stream/tests/_fixture/classInNamespace.php:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/vendor/symfony/debug/Tests/Fixtures/PEARClass.php:
--------------------------------------------------------------------------------
1 | -o|O, --option_name=OPTION_NAME option with multiple shortcuts
2 |
--------------------------------------------------------------------------------
/assets/font-awesome/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/assets/font-awesome/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/phpSecurePages/lng/lng_russian-cp1251.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/phpSecurePages/lng/lng_russian-cp1251.php
--------------------------------------------------------------------------------
/vendor/myclabs/deep-copy/doc/deep-copy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/vendor/myclabs/deep-copy/doc/deep-copy.png
--------------------------------------------------------------------------------
/vendor/phar-io/manifest/.gitignore:
--------------------------------------------------------------------------------
1 | /.idea
2 | /.php_cs.cache
3 | /composer.lock
4 | /src/autoload.php
5 | /tools
6 | /vendor
7 |
8 | /build
9 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit-mock-objects/src/Generator/wsdl_method.tpl.dist:
--------------------------------------------------------------------------------
1 |
2 | public function {method_name}({arguments})
3 | {
4 | }
5 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/_files/configuration_stop_on_warning.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_argument_4.txt:
--------------------------------------------------------------------------------
1 | argument_name multiline
2 | argument description
3 |
--------------------------------------------------------------------------------
/vendor/myclabs/deep-copy/doc/deep-clone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/vendor/myclabs/deep-copy/doc/deep-clone.png
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/_files/NamespaceCoveredFunction.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/vendor/symfony/config/Tests/Fixtures/Util/valid.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/vendor/symfony/dependency-injection/Tests/Fixtures/yaml/services13.yml:
--------------------------------------------------------------------------------
1 | # used to test imports in XML
2 | parameters:
3 | imported_from_yaml: true
4 |
--------------------------------------------------------------------------------
/vendor/symfony/dependency-injection/Tests/Fixtures/yaml/services4_bad_import.yml:
--------------------------------------------------------------------------------
1 | imports:
2 | - { resource: foo_fake.yml, ignore_errors: true }
3 |
--------------------------------------------------------------------------------
/assets/ico/apple-touch-icon-114-precomposed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/assets/ico/apple-touch-icon-114-precomposed.png
--------------------------------------------------------------------------------
/assets/ico/apple-touch-icon-144-precomposed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/assets/ico/apple-touch-icon-144-precomposed.png
--------------------------------------------------------------------------------
/assets/ico/apple-touch-icon-57-precomposed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/assets/ico/apple-touch-icon-57-precomposed.png
--------------------------------------------------------------------------------
/assets/ico/apple-touch-icon-72-precomposed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/assets/ico/apple-touch-icon-72-precomposed.png
--------------------------------------------------------------------------------
/phpSecurePages/lng/lng_brazilian-portuguese.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/phpSecurePages/lng/lng_brazilian-portuguese.php
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit-mock-objects/tests/_fixture/AnInterface.php:
--------------------------------------------------------------------------------
1 | argument_name argument description [default: "default_value"]
2 |
--------------------------------------------------------------------------------
/vendor/symfony/debug/Tests/Fixtures/casemismatch.php:
--------------------------------------------------------------------------------
1 | argument_name argument description [default: INF]
2 |
--------------------------------------------------------------------------------
/vendor/symfony/debug/Tests/Fixtures2/RequiredTwice.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_option_2.txt:
--------------------------------------------------------------------------------
1 | -o, --option_name[=OPTION_NAME] option description [default: "default_value"]
2 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_option_4.txt:
--------------------------------------------------------------------------------
1 | -o, --option_name[=OPTION_NAME] option description (multiple values allowed)
2 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_option_5.txt:
--------------------------------------------------------------------------------
1 | -o, --option_name=OPTION_NAME multiline
2 | option description
3 |
--------------------------------------------------------------------------------
/vendor/symfony/translation/Tests/fixtures/encoding.xlf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/vendor/symfony/translation/Tests/fixtures/encoding.xlf
--------------------------------------------------------------------------------
/vendor/symfony/translation/Tests/fixtures/resources.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/vendor/symfony/translation/Tests/fixtures/resources.mo
--------------------------------------------------------------------------------
/vendor/theseer/tokenizer/src/Exception.php:
--------------------------------------------------------------------------------
1 | argument_name argument description [default: "\style\>"]
2 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_definition_1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/vendor/symfony/debug/Tests/Fixtures/psr4/Psr4CaseMismatch.php:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/1330/phpunit1330.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.txt:
--------------------------------------------------------------------------------
1 | -o, --option_name[=OPTION_NAME] option description [default: INF]
2 |
--------------------------------------------------------------------------------
/assets/font-awesome/less/fixed-width.less:
--------------------------------------------------------------------------------
1 | // Fixed Width Icons
2 | // -------------------------
3 | .@{fa-css-prefix}-fw {
4 | width: (18em / 14);
5 | text-align: center;
6 | }
7 |
--------------------------------------------------------------------------------
/assets/font-awesome/scss/_fixed-width.scss:
--------------------------------------------------------------------------------
1 | // Fixed Width Icons
2 | // -------------------------
3 | .#{$fa-css-prefix}-fw {
4 | width: (18em / 14);
5 | text-align: center;
6 | }
7 |
--------------------------------------------------------------------------------
/vendor/phpmailer/phpmailer/examples/images/phpmailer_mini.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/vendor/phpmailer/phpmailer/examples/images/phpmailer_mini.png
--------------------------------------------------------------------------------
/vendor/phpunit/php-token-stream/tests/_fixture/classInScopedNamespace.php:
--------------------------------------------------------------------------------
1 | Usage:
2 | descriptor:command1
3 | alias1
4 | alias2
5 |
6 | Help:
7 | command 1 help
8 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_option_with_style.txt:
--------------------------------------------------------------------------------
1 | -o, --option_name=OPTION_NAME option description [default: "\style\>"]
2 |
--------------------------------------------------------------------------------
/vendor/symfony/debug/Tests/Fixtures/ClassAlias.php:
--------------------------------------------------------------------------------
1 |
7 | * Default: `NULL`
8 |
--------------------------------------------------------------------------------
/vendor/facebook/graph-sdk/phpcs.xml.dist:
--------------------------------------------------------------------------------
1 |
2 |
3 | src/
4 | tests/
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/vendor/phar-io/manifest/src/exceptions/ManifestElementException.php:
--------------------------------------------------------------------------------
1 | doSomethingElse();
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/2591/bootstrapWithBootstrap.php:
--------------------------------------------------------------------------------
1 | Arguments:
2 | argument_name
3 |
4 | Options:
5 | -o, --option_name
6 |
--------------------------------------------------------------------------------
/vendor/symfony/dependency-injection/Tests/Fixtures/yaml/badtag4.yml:
--------------------------------------------------------------------------------
1 | services:
2 | foo_service:
3 | class: FooClass
4 | tags:
5 | # tag is not an array
6 | - foo
7 |
--------------------------------------------------------------------------------
/vendor/phar-io/manifest/src/exceptions/ManifestDocumentException.php:
--------------------------------------------------------------------------------
1 | assertTrue(true);
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_0.txt:
--------------------------------------------------------------------------------
1 |
2 | ! [CAUTION] Lorem ipsum dolor sit amet
3 |
4 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_argument_1.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "argument_name",
3 | "is_required": true,
4 | "is_array": false,
5 | "description": "",
6 | "default": null
7 | }
8 |
--------------------------------------------------------------------------------
/vendor/symfony/debug/Tests/Fixtures/NonDeprecatedInterface.php:
--------------------------------------------------------------------------------
1 | var = $var;
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/2591/bootstrapWithBootstrapNoGlobal.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/vendor/phar-io/manifest/src/exceptions/ManifestDocumentMapperException.php:
--------------------------------------------------------------------------------
1 | __phpunit_invocationMocker = clone $this->__phpunit_getInvocationMocker();
4 | }
5 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/_files/NoTestCases.php:
--------------------------------------------------------------------------------
1 | assertTrue(true);
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/_files/NoArgTestCaseTest.php:
--------------------------------------------------------------------------------
1 |
2 | ]>
3 |
4 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_argument_2.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "argument_name",
3 | "is_required": false,
4 | "is_array": true,
5 | "description": "argument description",
6 | "default": []
7 | }
8 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_argument_4.md:
--------------------------------------------------------------------------------
1 | **argument_name:**
2 |
3 | * Name: argument_name
4 | * Is required: yes
5 | * Is array: no
6 | * Description: multiline
7 | argument description
8 | * Default: `NULL`
9 |
--------------------------------------------------------------------------------
/vendor/symfony/dependency-injection/Tests/Fixtures/yaml/badtag2.yml:
--------------------------------------------------------------------------------
1 | services:
2 | foo_service:
3 | class: FooClass
4 | tags:
5 | # tag is missing the name key
6 | foo_tag: { foo: bar }
7 |
--------------------------------------------------------------------------------
/vendor/myclabs/deep-copy/src/DeepCopy/Exception/PropertyException.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/2448/Test.php:
--------------------------------------------------------------------------------
1 | assertTrue(true);
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/vendor/sendgrid/php-http-client/Makefile:
--------------------------------------------------------------------------------
1 | .PHONY: clean install test
2 |
3 | clean:
4 | @rm -rf vendor composer.lock
5 |
6 | install: clean
7 | composer install
8 |
9 | test: install
10 | vendor/bin/phpunit test/unit
11 |
--------------------------------------------------------------------------------
/vendor/sendgrid/sendgrid/.codeclimate.yml:
--------------------------------------------------------------------------------
1 | ---
2 | engines:
3 | duplication:
4 | enabled: true
5 | config:
6 | languages:
7 | - php
8 | fixme:
9 | enabled: true
10 | phpmd:
11 | enabled: true
12 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_argument_1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.md:
--------------------------------------------------------------------------------
1 | **argument_name:**
2 |
3 | * Name: argument_name
4 | * Is required: no
5 | * Is array: no
6 | * Description: argument description
7 | * Default: `INF`
8 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.md:
--------------------------------------------------------------------------------
1 | **argument_name:**
2 |
3 | * Name: argument_name
4 | * Is required: no
5 | * Is array: no
6 | * Description: argument description
7 | * Default: `'style>'`
8 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_definition_2.md:
--------------------------------------------------------------------------------
1 | ### Arguments:
2 |
3 | **argument_name:**
4 |
5 | * Name: argument_name
6 | * Is required: yes
7 | * Is array: no
8 | * Description:
9 | * Default: `NULL`
10 |
--------------------------------------------------------------------------------
/vendor/symfony/dependency-injection/Tests/Fixtures/yaml/bad_decorates.yml:
--------------------------------------------------------------------------------
1 | services:
2 | foo:
3 | class: stdClass
4 | bar:
5 | class: stdClass
6 | decorates: "@foo"
7 | arguments: ["@bar.inner"]
8 |
--------------------------------------------------------------------------------
/vendor/symfony/translation/Tests/fixtures/fuzzy-translations.po:
--------------------------------------------------------------------------------
1 | #, php-format
2 | msgid "foo1"
3 | msgstr "bar1"
4 |
5 | #, fuzzy, php-format
6 | msgid "foo2"
7 | msgstr "fuzzy bar2"
8 |
9 | msgid "foo3"
10 | msgstr "bar3"
11 |
--------------------------------------------------------------------------------
/vendor/phpdocumentor/type-resolver/phive.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/_files/Failure.php:
--------------------------------------------------------------------------------
1 | fail();
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/_files/Inheritance/InheritanceB.php:
--------------------------------------------------------------------------------
1 | !
6 |
7 |
8 | foo
9 |
10 |
--------------------------------------------------------------------------------
/vendor/symfony/dependency-injection/Tests/Fixtures/yaml/tag_name_empty_string.yml:
--------------------------------------------------------------------------------
1 | services:
2 | foo_service:
3 | class: FooClass
4 | tags:
5 | # tag name is an empty string
6 | - { name: '', foo: bar }
7 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-token-stream/tests/_fixture/multipleNamespacesWithOneClassUsingBraces.php:
--------------------------------------------------------------------------------
1 | __phpunit_invocationMocker = clone $this->__phpunit_getInvocationMocker();
4 | parent::__clone();
5 | }
6 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit-mock-objects/tests/_fixture/FunctionCallback.php:
--------------------------------------------------------------------------------
1 | assertTrue(true);
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_option_1.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
--------------------------------------------------------------------------------
/vendor/symfony/dependency-injection/Tests/Fixtures/includes/ProjectWithXsdExtensionInPhar.phar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/vendor/symfony/dependency-injection/Tests/Fixtures/includes/ProjectWithXsdExtensionInPhar.phar
--------------------------------------------------------------------------------
/vendor/symfony/translation/Tests/fixtures/escaped-id.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Content-Type: text/plain; charset=UTF-8\n"
4 | "Content-Transfer-Encoding: 8bit\n"
5 | "Language: en\n"
6 |
7 | msgid "escaped \"foo\""
8 | msgstr "escaped \"bar\""
9 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/_files/TestTestError.php:
--------------------------------------------------------------------------------
1 | publicMethod();
8 | --EXPECT--
9 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_argument_2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | argument description
4 |
5 |
6 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "argument_name",
3 | "is_required": false,
4 | "is_array": false,
5 | "description": "argument description",
6 | "default": "INF"
7 | }
8 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "argument_name",
3 | "is_required": false,
4 | "is_array": false,
5 | "description": "argument description",
6 | "default": "style>"
7 | }
8 |
--------------------------------------------------------------------------------
/vendor/symfony/dependency-injection/Tests/Fixtures/yaml/badtag3.yml:
--------------------------------------------------------------------------------
1 | services:
2 | foo_service:
3 | class: FooClass
4 | tags:
5 | # tag-attribute is not a scalar
6 | - { name: foo, bar: { foo: foo, bar: bar } }
7 |
--------------------------------------------------------------------------------
/vendor/webmozart/assert/.editorconfig:
--------------------------------------------------------------------------------
1 | root = true
2 |
3 | [*]
4 | charset=utf-8
5 | end_of_line=lf
6 | trim_trailing_whitespace=true
7 | insert_final_newline=true
8 | indent_style=space
9 | indent_size=4
10 |
11 | [*.yml]
12 | indent_size=2
13 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/command_1.md:
--------------------------------------------------------------------------------
1 | descriptor:command1
2 | -------------------
3 |
4 | * Description: command 1 description
5 | * Usage:
6 |
7 | * `descriptor:command1`
8 | * `alias1`
9 | * `alias2`
10 |
11 | command 1 help
12 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_option_1.md:
--------------------------------------------------------------------------------
1 | **option_name:**
2 |
3 | * Name: `--option_name`
4 | * Shortcut: `-o`
5 | * Accept value: no
6 | * Is value required: no
7 | * Is multiple: no
8 | * Description:
9 | * Default: `false`
10 |
--------------------------------------------------------------------------------
/vendor/symfony/dependency-injection/Tests/Fixtures/yaml/services10.yml:
--------------------------------------------------------------------------------
1 | parameters:
2 | project.parameter.foo: BAR
3 |
4 | services:
5 | project.service.foo:
6 | class: BAR
7 |
8 | project:
9 | test: '%project.parameter.foo%'
10 |
--------------------------------------------------------------------------------
/vendor/symfony/dependency-injection/Tests/Fixtures/yaml/services8.yml:
--------------------------------------------------------------------------------
1 | parameters:
2 | foo: '%baz%'
3 | baz: bar
4 | bar: 'foo is %%foo bar'
5 | escape: '@@escapeme'
6 | values: [true, false, null, 0, 1000.3, 'true', 'false', 'null']
7 |
8 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/_files/AbstractTest.php:
--------------------------------------------------------------------------------
1 | assertTrue(true);
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/end-to-end/phpt-args.phpt:
--------------------------------------------------------------------------------
1 | --TEST--
2 | PHPT runner supports ARGS section
3 | --ARGS--
4 | help
5 | --FILE--
6 | 0 && $argv[1] == 'help') {
8 | echo 'Help';
9 | }
10 | ?>
11 | --EXPECT--
12 | Help
13 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_argument_4.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | multiline
4 | argument description
5 |
6 |
7 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/_files/TestSkipped.php:
--------------------------------------------------------------------------------
1 | markTestSkipped('Skipped test');
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/1570/Issue1570Test.php:
--------------------------------------------------------------------------------
1 | -o, --option_name=OPTION_NAME option description [default: ["\Hello\","\world\"]] (multiple values allowed)
2 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/.github/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | Please refer to [https://github.com/sebastianbergmann/phpunit/blob/master/CONTRIBUTING.md](https://github.com/sebastianbergmann/phpunit/blob/master/CONTRIBUTING.md) for details on how to contribute to this project.
2 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/fonts/glyphicons-halflings-regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/fonts/glyphicons-halflings-regular.woff2
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit-mock-objects/src/Generator/wsdl_class.tpl.dist:
--------------------------------------------------------------------------------
1 | {namespace}class {class_name} extends \SoapClient
2 | {
3 | public function __construct($wsdl, array $options)
4 | {
5 | parent::__construct('{wsdl}', $options);
6 | }
7 | {methods}}
8 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/_files/configuration.one-file-suite.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | ../../tests/end-to-end/debug.phpt
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/end-to-end/phpt-stdin.phpt:
--------------------------------------------------------------------------------
1 | --TEST--
2 | PHPT runner supports STDIN section
3 | --STDIN--
4 | Hello World
5 | --FILE--
6 |
10 | --EXPECT--
11 | Hello World
12 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_option_3.md:
--------------------------------------------------------------------------------
1 | **option_name:**
2 |
3 | * Name: `--option_name`
4 | * Shortcut: `-o`
5 | * Accept value: yes
6 | * Is value required: yes
7 | * Is multiple: no
8 | * Description: option description
9 | * Default: `NULL`
10 |
--------------------------------------------------------------------------------
/vendor/behat/behat/behat.yml.dist:
--------------------------------------------------------------------------------
1 | default:
2 | paths:
3 | features: features
4 | bootstrap: features/bootstrap
5 |
6 | annotations:
7 | paths:
8 | features: features/annotations
9 |
10 | closures:
11 | paths:
12 | features: features/closures
13 |
--------------------------------------------------------------------------------
/vendor/behat/behat/chef/cookbooks/php54/recipes/default.rb:
--------------------------------------------------------------------------------
1 | apt_repository "php54" do
2 | uri "http://ppa.launchpad.net/ondrej/php5/ubuntu"
3 | distribution node['lsb']['codename']
4 | components ["main"]
5 | keyserver "keyserver.ubuntu.com"
6 | key "E5267A6C"
7 | end
8 |
--------------------------------------------------------------------------------
/vendor/behat/gherkin/tests/Behat/Gherkin/Fixtures/features/clean_tags.feature:
--------------------------------------------------------------------------------
1 | Feature: Feature N4
2 |
3 | @normal
4 | Scenario:
5 | Given Some normal step N41
6 | And Some fast step N42
7 |
8 | @fast
9 | Scenario:
10 | Given Some slow step N43
11 |
--------------------------------------------------------------------------------
/vendor/behat/gherkin/tests/Behat/Gherkin/Fixtures/features/ja_addition.feature:
--------------------------------------------------------------------------------
1 | # language: ja
2 | フィーチャ: 加算
3 | バカな間違いを避けるために
4 | 数学オンチとして
5 | 2つの数の合計を知りたい
6 |
7 | シナリオ: 2つの数の加算について
8 | 前提 50 を入力
9 | かつ 70 を入力
10 | もし add ボタンを押した
11 | ならば結果は 120 を表示
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/2591/bootstrapNoBootstrap.php:
--------------------------------------------------------------------------------
1 | $value) {
7 | yield $key => $value;
8 | }
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/_files/TestIncomplete.php:
--------------------------------------------------------------------------------
1 | markTestIncomplete('Incomplete test');
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/_files/WasRun.php:
--------------------------------------------------------------------------------
1 | wasRun = true;
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/1265/Issue1265Test.php:
--------------------------------------------------------------------------------
1 | assertTrue(true);
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/BarBucCommand.php:
--------------------------------------------------------------------------------
1 | setName('bar:buc');
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_6.txt:
--------------------------------------------------------------------------------
1 |
2 | * Lorem ipsum dolor sit amet
3 | * consectetur adipiscing elit
4 |
5 | [OK] Lorem ipsum dolor sit amet
6 |
7 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_option_1.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "--option_name",
3 | "shortcut": "-o",
4 | "accept_value": false,
5 | "is_value_required": false,
6 | "is_multiple": false,
7 | "description": "",
8 | "default": false
9 | }
10 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_option_2.md:
--------------------------------------------------------------------------------
1 | **option_name:**
2 |
3 | * Name: `--option_name`
4 | * Shortcut: `-o`
5 | * Accept value: yes
6 | * Is value required: no
7 | * Is multiple: no
8 | * Description: option description
9 | * Default: `'default_value'`
10 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_option_3.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_option_4.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/vendor/symfony/debug/Tests/Fixtures/DeprecatedClass.php:
--------------------------------------------------------------------------------
1 | markTestIncomplete('Test incomplete');
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/_files/OneTestCase.php:
--------------------------------------------------------------------------------
1 |
8 | --XFAIL--
9 | Syntax Error in PHPT is supposed to fail
10 | --EXPECT--
11 | Should not see this
12 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/_files/phpunit-example-extension/tools/phpunit.d/phpunit-example-extension-1.0.1.phar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alexandrellemes/livro-caixa/HEAD/vendor/phpunit/phpunit/tests/_files/phpunit-example-extension/tools/phpunit.d/phpunit-example-extension-1.0.1.phar
--------------------------------------------------------------------------------
/vendor/sebastian/diff/tests/fixtures/patch.txt:
--------------------------------------------------------------------------------
1 | diff --git a/Foo.php b/Foo.php
2 | index abcdefg..abcdefh 100644
3 | --- a/Foo.php
4 | +++ b/Foo.php
5 | @@ -20,4 +20,5 @@ class Foo
6 | const ONE = 1;
7 | const TWO = 2;
8 | + const THREE = 3;
9 | const FOUR = 4;
10 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/Foo4Command.php:
--------------------------------------------------------------------------------
1 | setName('foo3:bar:toh');
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_definition_3.md:
--------------------------------------------------------------------------------
1 | ### Options:
2 |
3 | **option_name:**
4 |
5 | * Name: `--option_name`
6 | * Shortcut: `-o`
7 | * Accept value: no
8 | * Is value required: no
9 | * Is multiple: no
10 | * Description:
11 | * Default: `false`
12 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_option_5.md:
--------------------------------------------------------------------------------
1 | **option_name:**
2 |
3 | * Name: `--option_name`
4 | * Shortcut: `-o`
5 | * Accept value: yes
6 | * Is value required: yes
7 | * Is multiple: no
8 | * Description: multiline
9 | option description
10 | * Default: `NULL`
11 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_option_6.md:
--------------------------------------------------------------------------------
1 | **option_name:**
2 |
3 | * Name: `--option_name`
4 | * Shortcut: `-o|-O`
5 | * Accept value: yes
6 | * Is value required: yes
7 | * Is multiple: no
8 | * Description: option with multiple shortcuts
9 | * Default: `NULL`
10 |
--------------------------------------------------------------------------------
/vendor/symfony/dependency-injection/Tests/Fixtures/xml/extensions/services4.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/vendor/behat/gherkin/tests/Behat/Gherkin/Fixtures/features/ru_commented.feature:
--------------------------------------------------------------------------------
1 | # Comments
2 | # comments
3 | # COOOOOMMEEEENTS
4 | #
5 | # language: ru
6 |
7 | Функционал: Тест комментов
8 | i18n должен правильно считываться
9 | Даже если в начале файла 1000
10 | комментов!
11 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-token-stream/tests/_fixture/multipleNamespacesWithOneClassUsingNonBraceSyntax.php:
--------------------------------------------------------------------------------
1 | assertEquals('application/x-test', ini_get('default_mimetype'));
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/1216/phpunit1216.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Issue1216Test.php
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/1330/Issue1330Test.php:
--------------------------------------------------------------------------------
1 | assertTrue(PHPUNIT_1330);
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/2435/Issue2435Test.php:
--------------------------------------------------------------------------------
1 | assertTrue(true);
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/2972/issue-2972-test.phpt:
--------------------------------------------------------------------------------
1 | --TEST--
2 | Just a sample test for issue 2972, does not actually test anything
3 | --FILE--
4 |
7 | ===DONE===
8 | --EXPECT--
9 | Hello world
10 | ===DONE===
11 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/797/bootstrap797.php:
--------------------------------------------------------------------------------
1 | publicMethod();
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/873/Issue873Test.php:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_option_with_style.md:
--------------------------------------------------------------------------------
1 | **option_name:**
2 |
3 | * Name: `--option_name`
4 | * Shortcut: `-o`
5 | * Accept value: yes
6 | * Is value required: yes
7 | * Is multiple: no
8 | * Description: option description
9 | * Default: `'style>'`
10 |
--------------------------------------------------------------------------------
/vendor/symfony/debug/Tests/Fixtures/DeprecatedInterface.php:
--------------------------------------------------------------------------------
1 | register('foo', '%foo.class%')
8 | ;
9 |
10 | return $container;
11 |
--------------------------------------------------------------------------------
/vendor/symfony/translation/Tests/fixtures/resources.ts:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | resources
5 |
6 | foo
7 | bar
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/vendor/facebook/graph-sdk/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
1 | # Code of Conduct
2 |
3 | Facebook has adopted a Code of Conduct that we expect project participants to adhere to. Please [read the full text](https://code.facebook.com/codeofconduct) so that you can understand what actions will and will not be tolerated.
4 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/_files/NotPublicTestCase.php:
--------------------------------------------------------------------------------
1 |
2 |
3 | Test.php
4 |
5 |
6 |
7 |
8 | one
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/vendor/behat/gherkin/tests/Behat/Gherkin/Fixtures/features/trimpystring.feature:
--------------------------------------------------------------------------------
1 | Feature: A py string feature
2 |
3 | Scenario:
4 | Then String must be
5 | """
6 | -
7 | a string
8 | with something
9 | be
10 | a
11 | u
12 | ti
13 | ful
14 | """
15 |
--------------------------------------------------------------------------------
/vendor/phar-io/version/phive.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/CoverageNoneTest.php:
--------------------------------------------------------------------------------
1 | publicMethod();
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/_files/AssertionExampleTest.php:
--------------------------------------------------------------------------------
1 | doSomething();
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/end-to-end/phpt-env.phpt:
--------------------------------------------------------------------------------
1 | --TEST--
2 | PHPT runner should support ENV section
3 | --ENV--
4 | FOO=bar
5 | --FILE--
6 |
11 | --EXPECTF_EXTERNAL--
12 | _files/phpt-env.expected.txt
13 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_argument_3.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | argument description
4 |
5 | default_value
6 |
7 |
8 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_option_5.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "--option_name",
3 | "shortcut": "-o",
4 | "accept_value": true,
5 | "is_value_required": true,
6 | "is_multiple": false,
7 | "description": "multiline option description",
8 | "default": null
9 | }
10 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit-mock-objects/tests/_fixture/AbstractMockTestClass.php:
--------------------------------------------------------------------------------
1 | assertTrue(false);
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/end-to-end/regression/Trac/783/OneTest.php:
--------------------------------------------------------------------------------
1 | assertTrue(true);
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/end-to-end/regression/Trac/783/TwoTest.php:
--------------------------------------------------------------------------------
1 | assertTrue(true);
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_option_2.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "--option_name",
3 | "shortcut": "-o",
4 | "accept_value": true,
5 | "is_value_required": false,
6 | "is_multiple": false,
7 | "description": "option description",
8 | "default": "default_value"
9 | }
10 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_option_6.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "--option_name",
3 | "shortcut": "-o|-O",
4 | "accept_value": true,
5 | "is_value_required": true,
6 | "is_multiple": false,
7 | "description": "option with multiple shortcuts",
8 | "default": null
9 | }
10 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_option_6.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/vendor/symfony/dependency-injection/Tests/Fixtures/yaml/services20.yml:
--------------------------------------------------------------------------------
1 | services:
2 | request:
3 | class: Request
4 | synthetic: true
5 | synchronized: true
6 | depends_on_request:
7 | class: stdClass
8 | calls:
9 | - [setRequest, ['@?request']]
10 |
--------------------------------------------------------------------------------
/vendor/behat/gherkin/tests/Behat/Gherkin/Fixtures/features/empty_scenario.feature:
--------------------------------------------------------------------------------
1 | Feature: Cucumber command line
2 | In order to write better software
3 | Developers should be able to execute requirements as tests
4 |
5 |
6 | Scenario: Pending Scenario at the end of a file with whitespace after it
7 |
8 |
--------------------------------------------------------------------------------
/vendor/behat/gherkin/tests/Behat/Gherkin/Fixtures/features/undefined_multiline_args.feature:
--------------------------------------------------------------------------------
1 | Feature: undefined multiline args
2 |
3 | Scenario: pystring
4 | Given a pystring
5 | """
6 | example
7 | """
8 |
9 | Scenario: table
10 | Given a table
11 | | table |
12 | |example|
--------------------------------------------------------------------------------
/vendor/myclabs/deep-copy/src/DeepCopy/TypeFilter/TypeFilter.php:
--------------------------------------------------------------------------------
1 | a = $a;
11 | $this->b = $b;
12 | $this->c = $c;
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/Foo6Command.php:
--------------------------------------------------------------------------------
1 | setName('0foo:bar')->setDescription('0foo:bar command');
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | argument description
4 |
5 | INF
6 |
7 |
8 |
--------------------------------------------------------------------------------
/vendor/behat/behat/Berksfile.lock:
--------------------------------------------------------------------------------
1 | cookbook 'apt', :locked_version => '1.9.2'
2 | cookbook 'php', :locked_version => '1.1.8'
3 | cookbook 'build-essential', :locked_version => '1.4.0'
4 | cookbook 'xml', :locked_version => '1.1.2'
5 | cookbook 'mysql', :locked_version => '3.0.0'
6 | cookbook 'openssl', :locked_version => '1.0.2'
--------------------------------------------------------------------------------
/vendor/phpdocumentor/reflection-common/phive.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/2811/Issue2811Test.php:
--------------------------------------------------------------------------------
1 | expectExceptionMessage('hello');
7 |
8 | throw new \Exception('hello');
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "--option_name",
3 | "shortcut": "-o",
4 | "accept_value": true,
5 | "is_value_required": false,
6 | "is_multiple": false,
7 | "description": "option description",
8 | "default": "INF"
9 | }
10 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_option_with_style.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "--option_name",
3 | "shortcut": "-o",
4 | "accept_value": true,
5 | "is_value_required": true,
6 | "is_multiple": false,
7 | "description": "option description",
8 | "default": "style>"
9 | }
10 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/end-to-end/phpt-stderr.phpt:
--------------------------------------------------------------------------------
1 | --TEST--
2 | GH-1169: PHPT runner doesn't look at STDERR.
3 | --FILE--
4 | myTestData = $data;
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/vendor/sebastian/code-unit-reverse-lookup/ChangeLog.md:
--------------------------------------------------------------------------------
1 | # Change Log
2 |
3 | All notable changes to `sebastianbergmann/code-unit-reverse-lookup` are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles.
4 |
5 | ## 1.0.0 - 2016-02-13
6 |
7 | ### Added
8 |
9 | * Initial release
10 |
11 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_11.txt:
--------------------------------------------------------------------------------
1 |
2 | § [CUSTOM] Lopadotemachoselachogaleokranioleipsanodrimhypotrimmatosilphioparaomelitokatakechymenokichlepikossyphophatto
3 | § peristeralektryonoptekephalliokigklopeleiolagoiosiraiobaphetraganopterygon
4 |
5 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_argument_with_style.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | argument description
4 |
5 | <comment>style</>
6 |
7 |
8 |
--------------------------------------------------------------------------------
/vendor/symfony/dependency-injection/Tests/Fixtures/containers/container_abstract.php:
--------------------------------------------------------------------------------
1 | register('foo', 'Foo')
9 | ->setAbstract(true)
10 | ;
11 |
12 | return $container;
13 |
--------------------------------------------------------------------------------
/vendor/theseer/tokenizer/phive.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/css/es_Night.css:
--------------------------------------------------------------------------------
1 | /*! night.css classes dark viewing conditions */
2 |
3 | body {
4 | background-color: #202020;
5 | }
6 |
7 | .btn-default {
8 | background-color: #404040;
9 | }
10 |
11 | .panel-default>.panel-heading {
12 | background-color: #404040;
13 | }
14 |
15 | fieldset {
16 | color:#808080;
17 | }
18 |
--------------------------------------------------------------------------------
/vendor/behat/gherkin/tests/Behat/Gherkin/Fixtures/features/long_title_feature.feature:
--------------------------------------------------------------------------------
1 | Feature: https://rspec.lighthouseapp.com/projects/16211/tickets/246-distorted-console-output-for-slightly-complicated-step-regexp-match
2 |
3 | Scenario: See "No Record(s) Found" for Zero Existing
4 | Given no public holiday exists in the system
5 |
--------------------------------------------------------------------------------
/vendor/doctrine/instantiator/src/Doctrine/Instantiator/Exception/ExceptionInterface.php:
--------------------------------------------------------------------------------
1 | assertTrue($_ENV['configAvailableInBootstrap']);
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/vendor/symfony/dependency-injection/Tests/Fixtures/containers/container16.php:
--------------------------------------------------------------------------------
1 | register('foo', 'FooClass\\Foo')
8 | ->setDecoratedService('bar')
9 | ;
10 |
11 | return $container;
12 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/CoverageFunctionTest.php:
--------------------------------------------------------------------------------
1 | expects($any);
6 | return call_user_func_array(array($expects, 'method'), func_get_args());
7 | }
8 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit-mock-objects/src/Generator/mocked_static_method.tpl.dist:
--------------------------------------------------------------------------------
1 |
2 | {modifier} function {reference}{method_name}({arguments_decl}){return_delim}{return_type}
3 | {
4 | throw new \PHPUnit\Framework\MockObject\BadMethodCallException('Static method "{method_name}" cannot be invoked on mock object');
5 | }
6 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_option_2.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
--------------------------------------------------------------------------------
/vendor/symfony/dependency-injection/Tests/Fixtures/xml/services1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/vendor/symfony/translation/Tests/fixtures/escaped-id-plurals.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Content-Type: text/plain; charset=UTF-8\n"
4 | "Content-Transfer-Encoding: 8bit\n"
5 | "Language: en\n"
6 |
7 | msgid "escaped \"foo\""
8 | msgid_plural "escaped \"foos\""
9 | msgstr[0] "escaped \"bar\""
10 | msgstr[1] "escaped \"bars\""
11 |
--------------------------------------------------------------------------------
/vendor/behat/gherkin/tests/Behat/Gherkin/Fixtures/etalons/commented_out.yml:
--------------------------------------------------------------------------------
1 | feature:
2 | title: Fibonacci
3 | language: en
4 | line: 1
5 | description: |-
6 | In order to calculate super fast fibonacci series
7 | As a pythonista
8 | I want to use Python for that
9 |
10 | scenarios: ~
11 |
12 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/BankAccount-text.txt:
--------------------------------------------------------------------------------
1 |
2 |
3 | Code Coverage Report:
4 | %s
5 |
6 | Summary:
7 | Classes: 0.00% (0/1)
8 | Methods: 75.00% (3/4)
9 | Lines: 50.00% (5/10)
10 |
11 | BankAccount
12 | Methods: 75.00% ( 3/ 4) Lines: 50.00% ( 5/ 10)
13 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-token-stream/tests/_fixture/source5.php:
--------------------------------------------------------------------------------
1 | assertTrue(true);
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/_files/IgnoreCodeCoverageClass.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/vendor/phpdocumentor/reflection-docblock/phive.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/1468/Issue1468Test.php:
--------------------------------------------------------------------------------
1 | markTestIncomplete();
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.md:
--------------------------------------------------------------------------------
1 | **option_name:**
2 |
3 | * Name: `--option_name`
4 | * Shortcut: `-o`
5 | * Accept value: yes
6 | * Is value required: yes
7 | * Is multiple: yes
8 | * Description: option description
9 | * Default: `array ( 0 => 'Hello', 1 => 'world',)`
10 |
--------------------------------------------------------------------------------
/vendor/symfony/dependency-injection/Tests/Fixtures/containers/container15.php:
--------------------------------------------------------------------------------
1 | register('foo', 'FooClass\\Foo')
8 | ->setDecoratedService('bar', 'bar.woozy')
9 | ;
10 |
11 | return $container;
12 |
--------------------------------------------------------------------------------
/vendor/behat/gherkin/tests/Behat/Gherkin/Fixtures/etalons/ru_commented.yml:
--------------------------------------------------------------------------------
1 | feature:
2 | title: Тест комментов
3 | keyword: Функционал
4 | language: ru
5 | line: 7
6 | description: |-
7 | i18n должен правильно считываться
8 | Даже если в начале файла 1000
9 | комментов!
10 |
11 | scenarios: ~
12 |
--------------------------------------------------------------------------------
/vendor/behat/gherkin/tests/Behat/Gherkin/Fixtures/features/test_unit.feature:
--------------------------------------------------------------------------------
1 | Feature: Test::Unit
2 | In order to please people who like Test::Unit
3 | As a Cucumber user
4 | I want to be able to use assert* in my step definitions
5 |
6 | Scenario: assert_equal
7 | Given x = 5
8 | And y = 5
9 | Then I can assert that x == y
10 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/source_without_namespace.php:
--------------------------------------------------------------------------------
1 | publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/_files/CoverageFunctionParenthesesTest.php:
--------------------------------------------------------------------------------
1 | assertNotEmpty('Hello world!');
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/vendor/symfony/config/Tests/Fixtures/Util/schema.xsd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_definition_3.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/vendor/behat/gherkin/tests/Behat/Gherkin/Fixtures/features/background_title.feature:
--------------------------------------------------------------------------------
1 | Feature: Feature with titled background
2 |
3 | Background: Some Background
4 | title with
5 | couple
6 | of
7 | | continuous |
8 | """
9 | strings
10 | Given a passing step
11 |
12 | Scenario:
13 | Given a failing step
14 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit-mock-objects/tests/_fixture/AbstractTrait.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | ./tests/
7 | ./tests/*/
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/vendor/sendgrid/sendgrid/scripts/package.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | rm -rf vendor composer.lock
4 | composer install --no-dev
5 | printf "" > sendgrid-php.php
6 | cd ..
7 | zip -r sendgrid-php.zip sendgrid-php -x \*.git\* \*composer.json\* \*scripts\* \*test\* \*.travis.yml\* \*prism\*
8 |
9 | exit 0
10 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/application_renderexception1.txt:
--------------------------------------------------------------------------------
1 |
2 |
3 | [Symfony\Component\Console\Exception\CommandNotFoundException]
4 | Command "foo" is not defined.
5 |
6 |
7 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_definition_2.json:
--------------------------------------------------------------------------------
1 | {
2 | "arguments": {
3 | "argument_name": {
4 | "name": "argument_name",
5 | "is_required": true,
6 | "is_array": false,
7 | "description": "",
8 | "default": null
9 | }
10 | },
11 | "options": []
12 | }
13 |
--------------------------------------------------------------------------------
/composer.json:
--------------------------------------------------------------------------------
1 | {
2 | "require-dev": {
3 | "behat/behat": "2.4.*@stable"
4 | },
5 | "config": {
6 | "bin-dir": "bin/"
7 | },
8 | "require": {
9 | "phpmailer/phpmailer": "^5.2",
10 | "phpunit/phpunit": "^6.1",
11 | "sendgrid/sendgrid": "~7",
12 | "facebook/graph-sdk": "^5.7"
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/CoverageClassTest.php:
--------------------------------------------------------------------------------
1 | publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/CoverageFunctionParenthesesTest.php:
--------------------------------------------------------------------------------
1 | assertTrue(true);
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/_files/FatalTest.php:
--------------------------------------------------------------------------------
1 | expectOutputString('*');
9 |
10 | print '*';
11 |
12 | $this->assertTrue(false);
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/503/Issue503Test.php:
--------------------------------------------------------------------------------
1 | assertSame(
9 | "foo\n",
10 | "foo\r\n"
11 | );
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Tests/Fixtures/input_option_with_style.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
--------------------------------------------------------------------------------
/vendor/phpdocumentor/reflection-docblock/phpstan.neon:
--------------------------------------------------------------------------------
1 | includes:
2 | - /composer/vendor/phpstan/phpstan-mockery/extension.neon
3 | - /composer/vendor/phpstan/phpstan-webmozart-assert/extension.neon
4 |
5 | parameters:
6 | level: max
7 | ignoreErrors:
8 | - '#Call to static method Webmozart\\Assert\\Assert::implementsInterface\(\) with class-string#'
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php:
--------------------------------------------------------------------------------
1 |
6 | *
7 | * For the full copyright and license information, please view the LICENSE
8 | * file that was distributed with this source code.
9 | */
10 | eval('?>' . \file_get_contents('php://stdin'));
11 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/_files/CoveragePrivateTest.php:
--------------------------------------------------------------------------------
1 |
8 | */
9 | public function testSomething()
10 | {
11 | $o = new CoveredClass;
12 | $o->publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/_files/CoveragePublicTest.php:
--------------------------------------------------------------------------------
1 |
8 | */
9 | public function testSomething()
10 | {
11 | $o = new CoveredClass;
12 | $o->publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/2731/Issue2731Test.php:
--------------------------------------------------------------------------------
1 | expectException(Exception::class);
7 | $this->expectExceptionMessage('');
8 |
9 | throw new Exception('message');
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/nbproject/project.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | org.netbeans.modules.php.project
4 |
5 |
6 | livro-caixa
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/vendor/myclabs/deep-copy/src/DeepCopy/TypeFilter/ShallowCopyFilter.php:
--------------------------------------------------------------------------------
1 | endCount++;
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/_files/CoverageFunctionParenthesesWhitespaceTest.php:
--------------------------------------------------------------------------------
1 | publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/_files/CoverageNotPublicTest.php:
--------------------------------------------------------------------------------
1 |
8 | */
9 | public function testSomething()
10 | {
11 | $o = new CoveredClass;
12 | $o->publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/_files/phpunit-example-extension/tests/OneTest.php:
--------------------------------------------------------------------------------
1 | assertExampleExtensionInitialized();
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/797/Issue797Test.php:
--------------------------------------------------------------------------------
1 | assertEquals(GITHUB_ISSUE, 797);
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/CoveragePrivateTest.php:
--------------------------------------------------------------------------------
1 |
8 | */
9 | public function testSomething()
10 | {
11 | $o = new CoveredClass;
12 | $o->publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/CoveragePublicTest.php:
--------------------------------------------------------------------------------
1 |
8 | */
9 | public function testSomething()
10 | {
11 | $o = new CoveredClass;
12 | $o->publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/_files/CoverageNotPrivateTest.php:
--------------------------------------------------------------------------------
1 |
8 | */
9 | public function testSomething()
10 | {
11 | $o = new CoveredClass;
12 | $o->publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/_files/CoverageProtectedTest.php:
--------------------------------------------------------------------------------
1 |
8 | */
9 | public function testSomething()
10 | {
11 | $o = new CoveredClass;
12 | $o->publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/symfony/yaml/Tests/Fixtures/sfObjects.yml:
--------------------------------------------------------------------------------
1 | --- %YAML:1.0
2 | test: Objects
3 | brief: >
4 | Comments at the end of a line
5 | yaml: |
6 | ex1: "foo # bar"
7 | ex2: "foo # bar" # comment
8 | ex3: 'foo # bar' # comment
9 | ex4: foo # comment
10 | php: |
11 | array('ex1' => 'foo # bar', 'ex2' => 'foo # bar', 'ex3' => 'foo # bar', 'ex4' => 'foo')
12 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/CoverageFunctionParenthesesWhitespaceTest.php:
--------------------------------------------------------------------------------
1 | publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/CoverageNotPublicTest.php:
--------------------------------------------------------------------------------
1 |
8 | */
9 | public function testSomething()
10 | {
11 | $o = new CoveredClass;
12 | $o->publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/_files/CoverageClassExtendedTest.php:
--------------------------------------------------------------------------------
1 |
8 | */
9 | public function testSomething()
10 | {
11 | $o = new CoveredClass;
12 | $o->publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/_files/CoverageNotProtectedTest.php:
--------------------------------------------------------------------------------
1 |
8 | */
9 | public function testSomething()
10 | {
11 | $o = new CoveredClass;
12 | $o->publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/_files/NamespaceCoverageClassTest.php:
--------------------------------------------------------------------------------
1 | publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/CoverageNotPrivateTest.php:
--------------------------------------------------------------------------------
1 |
8 | */
9 | public function testSomething()
10 | {
11 | $o = new CoveredClass;
12 | $o->publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/CoverageProtectedTest.php:
--------------------------------------------------------------------------------
1 |
8 | */
9 | public function testSomething()
10 | {
11 | $o = new CoveredClass;
12 | $o->publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/_files/CoverageMethodOneLineAnnotationTest.php:
--------------------------------------------------------------------------------
1 | publicMethod();
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/74/Issue74Test.php:
--------------------------------------------------------------------------------
1 |
8 | */
9 | public function testSomething()
10 | {
11 | $o = new CoveredClass;
12 | $o->publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/CoverageMethodOneLineAnnotationTest.php:
--------------------------------------------------------------------------------
1 | publicMethod();
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/CoverageNotProtectedTest.php:
--------------------------------------------------------------------------------
1 |
8 | */
9 | public function testSomething()
10 | {
11 | $o = new CoveredClass;
12 | $o->publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/NamespaceCoverageClassTest.php:
--------------------------------------------------------------------------------
1 | publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/class-with-anonymous-function-text.txt:
--------------------------------------------------------------------------------
1 |
2 |
3 | Code Coverage Report:
4 | %s
5 |
6 | Summary:
7 | Classes: 0.00% (0/1)
8 | Methods: 50.00% (1/2)
9 | Lines: 87.50% (7/8)
10 |
11 | CoveredClassWithAnonymousFunctionInStaticMethod
12 | Methods: 50.00% ( 1/ 2) Lines: 80.00% ( 4/ 5)
13 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/_files/CoverageMethodParenthesesTest.php:
--------------------------------------------------------------------------------
1 | publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/_files/NamespaceCoveragePublicTest.php:
--------------------------------------------------------------------------------
1 |
8 | */
9 | public function testSomething()
10 | {
11 | $o = new Foo\CoveredClass;
12 | $o->publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/end-to-end/regression/GitHub/2145/Issue2145Test.php:
--------------------------------------------------------------------------------
1 | Hello",
10 | "world"
11 | ]
12 | }
13 |
--------------------------------------------------------------------------------
/vendor/phpunit/php-code-coverage/tests/_files/source_with_namespace.php:
--------------------------------------------------------------------------------
1 | publicMethod();
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/_files/NamespaceCoverageMethodTest.php:
--------------------------------------------------------------------------------
1 | publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/_files/NamespaceCoverageNotPublicTest.php:
--------------------------------------------------------------------------------
1 |
8 | */
9 | public function testSomething()
10 | {
11 | $o = new Foo\CoveredClass;
12 | $o->publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/phpunit/phpunit/tests/_files/NamespaceCoveragePrivateTest.php:
--------------------------------------------------------------------------------
1 |
8 | */
9 | public function testSomething()
10 | {
11 | $o = new Foo\CoveredClass;
12 | $o->publicMethod();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------