├── .editorconfig ├── .env.example ├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── static-code-analysis.yml │ └── tests.yml ├── .gitignore ├── .htrouter.php ├── .phalcon └── .gitkeep ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── app ├── config │ ├── config.ini │ ├── env.php │ ├── loader.php │ ├── routes.php │ └── services.php ├── controllers │ ├── AboutController.php │ ├── CompaniesController.php │ ├── ContactController.php │ ├── ControllerBase.php │ ├── ErrorsController.php │ ├── IndexController.php │ ├── InvoicesController.php │ ├── ProductsController.php │ ├── ProducttypesController.php │ ├── ProfileController.php │ ├── RegisterController.php │ └── SessionController.php ├── forms │ ├── CompaniesForm.php │ ├── ContactForm.php │ ├── ProductTypesForm.php │ ├── ProductsForm.php │ └── RegisterForm.php ├── library │ └── Elements.php ├── logs │ └── .gitignore ├── migrations │ └── .gitkeep ├── models │ ├── Companies.php │ ├── Contact.php │ ├── ProductTypes.php │ ├── Products.php │ └── Users.php ├── plugins │ ├── Acl │ │ ├── Resource.php │ │ ├── Resource │ │ │ └── ResourceInterface.php │ │ └── SecurityPlugin.php │ └── NotFoundPlugin.php └── views │ ├── about │ └── index.volt │ ├── companies │ ├── edit.volt │ ├── index.volt │ ├── new.volt │ └── search.volt │ ├── contact │ └── index.volt │ ├── errors │ ├── show401.volt │ ├── show404.volt │ └── show500.volt │ ├── index.volt │ ├── index │ └── index.volt │ ├── invoices │ └── index.volt │ ├── layouts │ ├── about.volt │ ├── companies.volt │ ├── contact.volt │ ├── errors.volt │ ├── index.volt │ ├── invoices.volt │ ├── main.volt │ ├── products.volt │ ├── producttypes.volt │ ├── profile.volt │ ├── register.volt │ └── session.volt │ ├── products │ ├── edit.volt │ ├── index.volt │ ├── new.volt │ └── search.volt │ ├── producttypes │ ├── edit.volt │ ├── index.volt │ ├── new.volt │ └── search.volt │ ├── profile │ └── edit.volt │ ├── register │ └── index.volt │ └── session │ └── index.volt ├── cache └── volt │ └── .gitignore ├── codeception.yml ├── composer.json ├── docker-compose.yml ├── phpcs.xml ├── public ├── favicon.ico ├── index.php └── js │ └── utils.js ├── schemas └── phalcon_demo.sql └── tests ├── _bootstrap.php ├── _cache └── .gitignore ├── _data └── dump.sql ├── _output └── .gitignore ├── _support ├── AcceptanceTester.php ├── FunctionalTester.php ├── Helper │ ├── Acceptance.php │ ├── Functional.php │ └── Unit.php ├── UnitTester.php └── User │ └── Functional │ └── UserSteps.php ├── acceptance.suite.yml ├── acceptance └── _bootstrap.php ├── functional.suite.yml ├── functional ├── AuthorizedVisitCept.php ├── EditProfileCest.php ├── IndexCept.php ├── InvalidLoginCept.php ├── InvoicesCept.php ├── LogOutCept.php ├── LoginCept.php ├── RoutesCest.php └── _bootstrap.php ├── unit.suite.yml └── unit ├── Model └── UsersTest.php └── _bootstrap.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/.env.example -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/static-code-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/.github/workflows/static-code-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.htrouter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/.htrouter.php -------------------------------------------------------------------------------- /.phalcon/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/README.md -------------------------------------------------------------------------------- /app/config/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/config/config.ini -------------------------------------------------------------------------------- /app/config/env.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/config/env.php -------------------------------------------------------------------------------- /app/config/loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/config/loader.php -------------------------------------------------------------------------------- /app/config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/config/routes.php -------------------------------------------------------------------------------- /app/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/config/services.php -------------------------------------------------------------------------------- /app/controllers/AboutController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/controllers/AboutController.php -------------------------------------------------------------------------------- /app/controllers/CompaniesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/controllers/CompaniesController.php -------------------------------------------------------------------------------- /app/controllers/ContactController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/controllers/ContactController.php -------------------------------------------------------------------------------- /app/controllers/ControllerBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/controllers/ControllerBase.php -------------------------------------------------------------------------------- /app/controllers/ErrorsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/controllers/ErrorsController.php -------------------------------------------------------------------------------- /app/controllers/IndexController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/controllers/IndexController.php -------------------------------------------------------------------------------- /app/controllers/InvoicesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/controllers/InvoicesController.php -------------------------------------------------------------------------------- /app/controllers/ProductsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/controllers/ProductsController.php -------------------------------------------------------------------------------- /app/controllers/ProducttypesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/controllers/ProducttypesController.php -------------------------------------------------------------------------------- /app/controllers/ProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/controllers/ProfileController.php -------------------------------------------------------------------------------- /app/controllers/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/controllers/RegisterController.php -------------------------------------------------------------------------------- /app/controllers/SessionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/controllers/SessionController.php -------------------------------------------------------------------------------- /app/forms/CompaniesForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/forms/CompaniesForm.php -------------------------------------------------------------------------------- /app/forms/ContactForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/forms/ContactForm.php -------------------------------------------------------------------------------- /app/forms/ProductTypesForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/forms/ProductTypesForm.php -------------------------------------------------------------------------------- /app/forms/ProductsForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/forms/ProductsForm.php -------------------------------------------------------------------------------- /app/forms/RegisterForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/forms/RegisterForm.php -------------------------------------------------------------------------------- /app/library/Elements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/library/Elements.php -------------------------------------------------------------------------------- /app/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /app/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/Companies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/models/Companies.php -------------------------------------------------------------------------------- /app/models/Contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/models/Contact.php -------------------------------------------------------------------------------- /app/models/ProductTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/models/ProductTypes.php -------------------------------------------------------------------------------- /app/models/Products.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/models/Products.php -------------------------------------------------------------------------------- /app/models/Users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/models/Users.php -------------------------------------------------------------------------------- /app/plugins/Acl/Resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/plugins/Acl/Resource.php -------------------------------------------------------------------------------- /app/plugins/Acl/Resource/ResourceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/plugins/Acl/Resource/ResourceInterface.php -------------------------------------------------------------------------------- /app/plugins/Acl/SecurityPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/plugins/Acl/SecurityPlugin.php -------------------------------------------------------------------------------- /app/plugins/NotFoundPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/plugins/NotFoundPlugin.php -------------------------------------------------------------------------------- /app/views/about/index.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/views/about/index.volt -------------------------------------------------------------------------------- /app/views/companies/edit.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/views/companies/edit.volt -------------------------------------------------------------------------------- /app/views/companies/index.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/views/companies/index.volt -------------------------------------------------------------------------------- /app/views/companies/new.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/views/companies/new.volt -------------------------------------------------------------------------------- /app/views/companies/search.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/views/companies/search.volt -------------------------------------------------------------------------------- /app/views/contact/index.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/views/contact/index.volt -------------------------------------------------------------------------------- /app/views/errors/show401.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/views/errors/show401.volt -------------------------------------------------------------------------------- /app/views/errors/show404.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/views/errors/show404.volt -------------------------------------------------------------------------------- /app/views/errors/show500.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/views/errors/show500.volt -------------------------------------------------------------------------------- /app/views/index.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/views/index.volt -------------------------------------------------------------------------------- /app/views/index/index.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/views/index/index.volt -------------------------------------------------------------------------------- /app/views/invoices/index.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/views/invoices/index.volt -------------------------------------------------------------------------------- /app/views/layouts/about.volt: -------------------------------------------------------------------------------- 1 | {{ content() }} 2 | -------------------------------------------------------------------------------- /app/views/layouts/companies.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/views/layouts/companies.volt -------------------------------------------------------------------------------- /app/views/layouts/contact.volt: -------------------------------------------------------------------------------- 1 | {{ content() }} 2 | -------------------------------------------------------------------------------- /app/views/layouts/errors.volt: -------------------------------------------------------------------------------- 1 | {{ content() }} 2 | -------------------------------------------------------------------------------- /app/views/layouts/index.volt: -------------------------------------------------------------------------------- 1 | {{ content() }} 2 | -------------------------------------------------------------------------------- /app/views/layouts/invoices.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/views/layouts/invoices.volt -------------------------------------------------------------------------------- /app/views/layouts/main.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/views/layouts/main.volt -------------------------------------------------------------------------------- /app/views/layouts/products.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/views/layouts/products.volt -------------------------------------------------------------------------------- /app/views/layouts/producttypes.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/views/layouts/producttypes.volt -------------------------------------------------------------------------------- /app/views/layouts/profile.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/views/layouts/profile.volt -------------------------------------------------------------------------------- /app/views/layouts/register.volt: -------------------------------------------------------------------------------- 1 | {{ content() }} 2 | -------------------------------------------------------------------------------- /app/views/layouts/session.volt: -------------------------------------------------------------------------------- 1 | {{ content() }} 2 | -------------------------------------------------------------------------------- /app/views/products/edit.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/views/products/edit.volt -------------------------------------------------------------------------------- /app/views/products/index.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/views/products/index.volt -------------------------------------------------------------------------------- /app/views/products/new.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/views/products/new.volt -------------------------------------------------------------------------------- /app/views/products/search.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/views/products/search.volt -------------------------------------------------------------------------------- /app/views/producttypes/edit.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/views/producttypes/edit.volt -------------------------------------------------------------------------------- /app/views/producttypes/index.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/views/producttypes/index.volt -------------------------------------------------------------------------------- /app/views/producttypes/new.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/views/producttypes/new.volt -------------------------------------------------------------------------------- /app/views/producttypes/search.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/views/producttypes/search.volt -------------------------------------------------------------------------------- /app/views/profile/edit.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/views/profile/edit.volt -------------------------------------------------------------------------------- /app/views/register/index.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/views/register/index.volt -------------------------------------------------------------------------------- /app/views/session/index.volt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/app/views/session/index.volt -------------------------------------------------------------------------------- /cache/volt/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /codeception.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/codeception.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/composer.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/phpcs.xml -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/public/js/utils.js -------------------------------------------------------------------------------- /schemas/phalcon_demo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/schemas/phalcon_demo.sql -------------------------------------------------------------------------------- /tests/_bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/tests/_bootstrap.php -------------------------------------------------------------------------------- /tests/_cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/_data/dump.sql: -------------------------------------------------------------------------------- 1 | /* Replace this file with actual dump of your database */ -------------------------------------------------------------------------------- /tests/_output/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/_support/AcceptanceTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/tests/_support/AcceptanceTester.php -------------------------------------------------------------------------------- /tests/_support/FunctionalTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/tests/_support/FunctionalTester.php -------------------------------------------------------------------------------- /tests/_support/Helper/Acceptance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/tests/_support/Helper/Acceptance.php -------------------------------------------------------------------------------- /tests/_support/Helper/Functional.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/tests/_support/Helper/Functional.php -------------------------------------------------------------------------------- /tests/_support/Helper/Unit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/tests/_support/Helper/Unit.php -------------------------------------------------------------------------------- /tests/_support/UnitTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/tests/_support/UnitTester.php -------------------------------------------------------------------------------- /tests/_support/User/Functional/UserSteps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/tests/_support/User/Functional/UserSteps.php -------------------------------------------------------------------------------- /tests/acceptance.suite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/tests/acceptance.suite.yml -------------------------------------------------------------------------------- /tests/acceptance/_bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/tests/acceptance/_bootstrap.php -------------------------------------------------------------------------------- /tests/functional.suite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/tests/functional.suite.yml -------------------------------------------------------------------------------- /tests/functional/AuthorizedVisitCept.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/tests/functional/AuthorizedVisitCept.php -------------------------------------------------------------------------------- /tests/functional/EditProfileCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/tests/functional/EditProfileCest.php -------------------------------------------------------------------------------- /tests/functional/IndexCept.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/tests/functional/IndexCept.php -------------------------------------------------------------------------------- /tests/functional/InvalidLoginCept.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/tests/functional/InvalidLoginCept.php -------------------------------------------------------------------------------- /tests/functional/InvoicesCept.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/tests/functional/InvoicesCept.php -------------------------------------------------------------------------------- /tests/functional/LogOutCept.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/tests/functional/LogOutCept.php -------------------------------------------------------------------------------- /tests/functional/LoginCept.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/tests/functional/LoginCept.php -------------------------------------------------------------------------------- /tests/functional/RoutesCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/tests/functional/RoutesCest.php -------------------------------------------------------------------------------- /tests/functional/_bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/tests/functional/_bootstrap.php -------------------------------------------------------------------------------- /tests/unit.suite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/tests/unit.suite.yml -------------------------------------------------------------------------------- /tests/unit/Model/UsersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/tests/unit/Model/UsersTest.php -------------------------------------------------------------------------------- /tests/unit/_bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeception/phalcon-demo/HEAD/tests/unit/_bootstrap.php --------------------------------------------------------------------------------