├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CONTRIBUTING.md ├── INDEX.md ├── LICENSE.txt ├── Library └── Phalcon │ ├── Mvc │ ├── Model │ │ ├── Behavior │ │ │ ├── Blameable.php │ │ │ ├── Blameable │ │ │ │ ├── Audit.php │ │ │ │ ├── AuditDetail.php │ │ │ │ ├── AuditDetailInterface.php │ │ │ │ └── AuditInterface.php │ │ │ ├── Exception.php │ │ │ ├── NestedSet.php │ │ │ └── README.md │ │ ├── EagerLoading │ │ │ ├── EagerLoad.php │ │ │ ├── Loader.php │ │ │ └── QueryBuilder.php │ │ ├── EagerLoadingTrait.php │ │ ├── MetaData │ │ │ ├── Base.php │ │ │ ├── README.md │ │ │ └── Wincache.php │ │ └── README.md │ ├── MongoCollection.php │ └── View │ │ ├── Engine │ │ ├── Mustache.php │ │ ├── README.md │ │ ├── Smarty.php │ │ ├── Twig.php │ │ └── Twig │ │ │ ├── CoreExtension.php │ │ │ ├── Environment.php │ │ │ ├── Nodes │ │ │ └── Assets.php │ │ │ └── TokenParsers │ │ │ └── Assets.php │ │ └── SmartyView.php │ ├── Paginator │ ├── Pager.php │ ├── Pager │ │ ├── Layout.php │ │ ├── Layout │ │ │ └── Bootstrap.php │ │ ├── Range.php │ │ └── Range │ │ │ ├── Jumping.php │ │ │ └── Sliding.php │ └── README.md │ └── Traits │ ├── ConfigurableTrait.php │ ├── EventManagerAwareTrait.php │ └── README.md ├── README.md ├── codeception.dist.yml ├── composer.json ├── docker-compose.yml ├── phpcs.xml └── tests ├── .env ├── README.md ├── _bootstrap.php ├── _ci ├── ci.ini ├── install_phalcon.sh ├── install_prereqs_5.sh ├── install_prereqs_7.sh └── pear_setup.sh ├── _data ├── assets │ └── translation │ │ └── csv │ │ └── names.csv ├── behavior │ └── blameable │ │ └── Audit.php ├── collections │ ├── Cars.php │ ├── Heroes.php │ ├── Robots.php │ └── Users.php ├── config │ └── config.xml ├── dump.sql └── models │ └── Robots.php ├── _fixtures ├── Acl │ ├── acl.ini │ └── acl.php ├── Config │ ├── config.inc │ ├── config.ini │ ├── config.json │ ├── config.php │ ├── config.php5 │ ├── config.txt │ ├── config.yaml │ └── config.yml ├── Db │ └── sqlite.db ├── Utils │ └── array_utils.php └── Validation │ ├── card_number.php │ └── iban_data.php ├── _output └── .gitignore ├── _support ├── AerospikeTester.php ├── Helper │ ├── AerospikeHelper.php │ ├── CollectionTrait.php │ ├── Session │ │ └── Dialect │ │ │ ├── DatabaseTrait.php │ │ │ └── ModelSession.php │ ├── Unit.php │ └── Unit5x.php ├── Module │ └── UnitTest.php ├── Unit5xTester.php ├── UnitTester.php ├── _generated │ └── .gitignore └── functions.php ├── aerospike.suite.dist.yml ├── aerospike ├── Annotations │ └── Adapter │ │ └── AerospikeTest.php ├── Cache │ └── Backend │ │ └── AerospikeTest.php ├── Session │ └── Adapter │ │ └── AerospikeTest.php └── _bootstrap.php ├── unit.suite.5.dist.yml ├── unit.suite.dist.yml ├── unit ├── Acl │ ├── Adapter │ │ └── DatabaseTest.php │ └── Factory │ │ └── MemoryTest.php ├── Annotations │ ├── Adapter │ │ ├── BaseTest.php │ │ ├── MemcachedTest.php │ │ └── RedisTest.php │ └── Extended │ │ └── Adapter │ │ ├── ApcTest.php │ │ ├── FilesTest.php │ │ └── MemoryTest.php ├── Avatar │ └── GravatarTest.php ├── Cache │ └── Backend │ │ ├── DatabaseTest.php │ │ └── NullCacheTest.php ├── Config │ ├── Adapter │ │ └── XmlTest.php │ └── LoaderTest.php ├── Db │ ├── Adapter │ │ └── FactoryTest.php │ └── Dialect │ │ └── OracleTest.php ├── Http │ └── Client │ │ └── HeaderTest.php ├── Legacy │ └── CryptTest.php ├── Mvc │ ├── Collection │ │ ├── Helpers │ │ │ ├── UniquenessTrait.php │ │ │ └── ValidationBase.php │ │ └── ValidationCest.php │ ├── Model │ │ ├── Behavior │ │ │ ├── BlameableTest.php │ │ │ ├── Helper.php │ │ │ ├── NestedSetTest.php │ │ │ └── Stubs │ │ │ │ └── Categories.php │ │ ├── EagerLoading │ │ │ ├── EagerLoadingTest.php │ │ │ └── Stubs │ │ │ │ ├── AbstractModel.php │ │ │ │ ├── Bug.php │ │ │ │ ├── Manufacturer.php │ │ │ │ ├── NotSupportedRelation.php │ │ │ │ ├── Part.php │ │ │ │ ├── Purpose.php │ │ │ │ ├── Robot.php │ │ │ │ └── RobotPart.php │ │ └── MetaData │ │ │ └── BaseTest.php │ └── MongoCollectionTest.php ├── Paginator │ └── PagerTest.php ├── Queue │ └── Beanstalk │ │ └── ExtendedTest.php ├── Session │ └── Adapter │ │ └── DatabaseTest.php ├── Test │ ├── Codeception │ │ ├── FunctionalTestCaseTest.php │ │ ├── ModelTestCaseTest.php │ │ └── UnitTestCaseTest.php │ ├── FunctionalTestCaseTest.php │ ├── ModelTestCaseTest.php │ ├── PHPUnit │ │ ├── FunctionalTestCaseTest.php │ │ ├── ModelTestCaseTest.php │ │ └── UnitTestCaseTest.php │ ├── Traits │ │ ├── ModelTestCaseTest.php │ │ ├── ResultSetTest.php │ │ └── UnitTestCaseTest.php │ └── UnitTestCaseTest.php ├── Translate │ ├── Adapter │ │ ├── CsvMulti │ │ │ ├── Base.php │ │ │ ├── ExistsCest.php │ │ │ ├── GetIndexCest.php │ │ │ └── QueryCest.php │ │ └── DatabaseCest.php │ └── Interpolator │ │ └── Intl │ │ └── ReplacePlaceholdersCest.php ├── Validation │ └── Validator │ │ ├── AlphaCompleteValidatorTest.php │ │ ├── AlphaNamesValidatorTest.php │ │ ├── AlphaNumericValidatorTest.php │ │ ├── ArrayInclusionInTest.php │ │ ├── CardNumberTest.php │ │ ├── ConfirmationOfTest.php │ │ ├── Db │ │ └── UniquenessTest.php │ │ ├── DecimalTest.php │ │ ├── IbanTest.php │ │ ├── IpValidatorTest.php │ │ ├── MongoIdTest.php │ │ ├── NumericValidatorTest.php │ │ └── PasswordStrengthTest.php └── _bootstrap.php ├── unit5x.suite.dist.yml └── unit5x ├── Validation └── Validator │ └── MongoIdTest.php └── _bootstrap.php /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /INDEX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/INDEX.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Library/Phalcon/Mvc/Model/Behavior/Blameable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/Library/Phalcon/Mvc/Model/Behavior/Blameable.php -------------------------------------------------------------------------------- /Library/Phalcon/Mvc/Model/Behavior/Blameable/Audit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/Library/Phalcon/Mvc/Model/Behavior/Blameable/Audit.php -------------------------------------------------------------------------------- /Library/Phalcon/Mvc/Model/Behavior/Blameable/AuditDetail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/Library/Phalcon/Mvc/Model/Behavior/Blameable/AuditDetail.php -------------------------------------------------------------------------------- /Library/Phalcon/Mvc/Model/Behavior/Blameable/AuditDetailInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/Library/Phalcon/Mvc/Model/Behavior/Blameable/AuditDetailInterface.php -------------------------------------------------------------------------------- /Library/Phalcon/Mvc/Model/Behavior/Blameable/AuditInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/Library/Phalcon/Mvc/Model/Behavior/Blameable/AuditInterface.php -------------------------------------------------------------------------------- /Library/Phalcon/Mvc/Model/Behavior/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/Library/Phalcon/Mvc/Model/Behavior/Exception.php -------------------------------------------------------------------------------- /Library/Phalcon/Mvc/Model/Behavior/NestedSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/Library/Phalcon/Mvc/Model/Behavior/NestedSet.php -------------------------------------------------------------------------------- /Library/Phalcon/Mvc/Model/Behavior/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/Library/Phalcon/Mvc/Model/Behavior/README.md -------------------------------------------------------------------------------- /Library/Phalcon/Mvc/Model/EagerLoading/EagerLoad.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/Library/Phalcon/Mvc/Model/EagerLoading/EagerLoad.php -------------------------------------------------------------------------------- /Library/Phalcon/Mvc/Model/EagerLoading/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/Library/Phalcon/Mvc/Model/EagerLoading/Loader.php -------------------------------------------------------------------------------- /Library/Phalcon/Mvc/Model/EagerLoading/QueryBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/Library/Phalcon/Mvc/Model/EagerLoading/QueryBuilder.php -------------------------------------------------------------------------------- /Library/Phalcon/Mvc/Model/EagerLoadingTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/Library/Phalcon/Mvc/Model/EagerLoadingTrait.php -------------------------------------------------------------------------------- /Library/Phalcon/Mvc/Model/MetaData/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/Library/Phalcon/Mvc/Model/MetaData/Base.php -------------------------------------------------------------------------------- /Library/Phalcon/Mvc/Model/MetaData/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/Library/Phalcon/Mvc/Model/MetaData/README.md -------------------------------------------------------------------------------- /Library/Phalcon/Mvc/Model/MetaData/Wincache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/Library/Phalcon/Mvc/Model/MetaData/Wincache.php -------------------------------------------------------------------------------- /Library/Phalcon/Mvc/Model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/Library/Phalcon/Mvc/Model/README.md -------------------------------------------------------------------------------- /Library/Phalcon/Mvc/MongoCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/Library/Phalcon/Mvc/MongoCollection.php -------------------------------------------------------------------------------- /Library/Phalcon/Mvc/View/Engine/Mustache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/Library/Phalcon/Mvc/View/Engine/Mustache.php -------------------------------------------------------------------------------- /Library/Phalcon/Mvc/View/Engine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/Library/Phalcon/Mvc/View/Engine/README.md -------------------------------------------------------------------------------- /Library/Phalcon/Mvc/View/Engine/Smarty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/Library/Phalcon/Mvc/View/Engine/Smarty.php -------------------------------------------------------------------------------- /Library/Phalcon/Mvc/View/Engine/Twig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/Library/Phalcon/Mvc/View/Engine/Twig.php -------------------------------------------------------------------------------- /Library/Phalcon/Mvc/View/Engine/Twig/CoreExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/Library/Phalcon/Mvc/View/Engine/Twig/CoreExtension.php -------------------------------------------------------------------------------- /Library/Phalcon/Mvc/View/Engine/Twig/Environment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/Library/Phalcon/Mvc/View/Engine/Twig/Environment.php -------------------------------------------------------------------------------- /Library/Phalcon/Mvc/View/Engine/Twig/Nodes/Assets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/Library/Phalcon/Mvc/View/Engine/Twig/Nodes/Assets.php -------------------------------------------------------------------------------- /Library/Phalcon/Mvc/View/Engine/Twig/TokenParsers/Assets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/Library/Phalcon/Mvc/View/Engine/Twig/TokenParsers/Assets.php -------------------------------------------------------------------------------- /Library/Phalcon/Mvc/View/SmartyView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/Library/Phalcon/Mvc/View/SmartyView.php -------------------------------------------------------------------------------- /Library/Phalcon/Paginator/Pager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/Library/Phalcon/Paginator/Pager.php -------------------------------------------------------------------------------- /Library/Phalcon/Paginator/Pager/Layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/Library/Phalcon/Paginator/Pager/Layout.php -------------------------------------------------------------------------------- /Library/Phalcon/Paginator/Pager/Layout/Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/Library/Phalcon/Paginator/Pager/Layout/Bootstrap.php -------------------------------------------------------------------------------- /Library/Phalcon/Paginator/Pager/Range.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/Library/Phalcon/Paginator/Pager/Range.php -------------------------------------------------------------------------------- /Library/Phalcon/Paginator/Pager/Range/Jumping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/Library/Phalcon/Paginator/Pager/Range/Jumping.php -------------------------------------------------------------------------------- /Library/Phalcon/Paginator/Pager/Range/Sliding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/Library/Phalcon/Paginator/Pager/Range/Sliding.php -------------------------------------------------------------------------------- /Library/Phalcon/Paginator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/Library/Phalcon/Paginator/README.md -------------------------------------------------------------------------------- /Library/Phalcon/Traits/ConfigurableTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/Library/Phalcon/Traits/ConfigurableTrait.php -------------------------------------------------------------------------------- /Library/Phalcon/Traits/EventManagerAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/Library/Phalcon/Traits/EventManagerAwareTrait.php -------------------------------------------------------------------------------- /Library/Phalcon/Traits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/Library/Phalcon/Traits/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/README.md -------------------------------------------------------------------------------- /codeception.dist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/codeception.dist.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/composer.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/phpcs.xml -------------------------------------------------------------------------------- /tests/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/.env -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/_bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/_bootstrap.php -------------------------------------------------------------------------------- /tests/_ci/ci.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/_ci/ci.ini -------------------------------------------------------------------------------- /tests/_ci/install_phalcon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/_ci/install_phalcon.sh -------------------------------------------------------------------------------- /tests/_ci/install_prereqs_5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/_ci/install_prereqs_5.sh -------------------------------------------------------------------------------- /tests/_ci/install_prereqs_7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/_ci/install_prereqs_7.sh -------------------------------------------------------------------------------- /tests/_ci/pear_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/_ci/pear_setup.sh -------------------------------------------------------------------------------- /tests/_data/assets/translation/csv/names.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/_data/assets/translation/csv/names.csv -------------------------------------------------------------------------------- /tests/_data/behavior/blameable/Audit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/_data/behavior/blameable/Audit.php -------------------------------------------------------------------------------- /tests/_data/collections/Cars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/_data/collections/Cars.php -------------------------------------------------------------------------------- /tests/_data/collections/Heroes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/_data/collections/Heroes.php -------------------------------------------------------------------------------- /tests/_data/collections/Robots.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/_data/collections/Robots.php -------------------------------------------------------------------------------- /tests/_data/collections/Users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/_data/collections/Users.php -------------------------------------------------------------------------------- /tests/_data/config/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/_data/config/config.xml -------------------------------------------------------------------------------- /tests/_data/dump.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/_data/dump.sql -------------------------------------------------------------------------------- /tests/_data/models/Robots.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/_data/models/Robots.php -------------------------------------------------------------------------------- /tests/_fixtures/Acl/acl.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/_fixtures/Acl/acl.ini -------------------------------------------------------------------------------- /tests/_fixtures/Acl/acl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/_fixtures/Acl/acl.php -------------------------------------------------------------------------------- /tests/_fixtures/Config/config.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/_fixtures/Config/config.inc -------------------------------------------------------------------------------- /tests/_fixtures/Config/config.ini: -------------------------------------------------------------------------------- 1 | [phalcon] 2 | foo = bar -------------------------------------------------------------------------------- /tests/_fixtures/Config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/_fixtures/Config/config.json -------------------------------------------------------------------------------- /tests/_fixtures/Config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/_fixtures/Config/config.php -------------------------------------------------------------------------------- /tests/_fixtures/Config/config.php5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/_fixtures/Config/config.php5 -------------------------------------------------------------------------------- /tests/_fixtures/Config/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/_fixtures/Config/config.txt -------------------------------------------------------------------------------- /tests/_fixtures/Config/config.yaml: -------------------------------------------------------------------------------- 1 | phalcon: 2 | foo: bar 3 | -------------------------------------------------------------------------------- /tests/_fixtures/Config/config.yml: -------------------------------------------------------------------------------- 1 | phalcon: 2 | foo: bar 3 | -------------------------------------------------------------------------------- /tests/_fixtures/Db/sqlite.db: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_fixtures/Utils/array_utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/_fixtures/Utils/array_utils.php -------------------------------------------------------------------------------- /tests/_fixtures/Validation/card_number.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/_fixtures/Validation/card_number.php -------------------------------------------------------------------------------- /tests/_fixtures/Validation/iban_data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/_fixtures/Validation/iban_data.php -------------------------------------------------------------------------------- /tests/_output/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /tests/_support/AerospikeTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/_support/AerospikeTester.php -------------------------------------------------------------------------------- /tests/_support/Helper/AerospikeHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/_support/Helper/AerospikeHelper.php -------------------------------------------------------------------------------- /tests/_support/Helper/CollectionTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/_support/Helper/CollectionTrait.php -------------------------------------------------------------------------------- /tests/_support/Helper/Session/Dialect/DatabaseTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/_support/Helper/Session/Dialect/DatabaseTrait.php -------------------------------------------------------------------------------- /tests/_support/Helper/Session/Dialect/ModelSession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/_support/Helper/Session/Dialect/ModelSession.php -------------------------------------------------------------------------------- /tests/_support/Helper/Unit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/_support/Helper/Unit.php -------------------------------------------------------------------------------- /tests/_support/Helper/Unit5x.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/_support/Helper/Unit5x.php -------------------------------------------------------------------------------- /tests/_support/Module/UnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/_support/Module/UnitTest.php -------------------------------------------------------------------------------- /tests/_support/Unit5xTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/_support/Unit5xTester.php -------------------------------------------------------------------------------- /tests/_support/UnitTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/_support/UnitTester.php -------------------------------------------------------------------------------- /tests/_support/_generated/.gitignore: -------------------------------------------------------------------------------- 1 | [^.]* 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/_support/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/_support/functions.php -------------------------------------------------------------------------------- /tests/aerospike.suite.dist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/aerospike.suite.dist.yml -------------------------------------------------------------------------------- /tests/aerospike/Annotations/Adapter/AerospikeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/aerospike/Annotations/Adapter/AerospikeTest.php -------------------------------------------------------------------------------- /tests/aerospike/Cache/Backend/AerospikeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/aerospike/Cache/Backend/AerospikeTest.php -------------------------------------------------------------------------------- /tests/aerospike/Session/Adapter/AerospikeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phalcon/incubator/HEAD/tests/aerospike/Session/Adapter/AerospikeTest.php -------------------------------------------------------------------------------- /tests/aerospike/_bootstrap.php: -------------------------------------------------------------------------------- 1 |