├── .editorconfig ├── .gitignore ├── .gitmodules ├── .htaccess ├── LICENSE.txt ├── README.md ├── composer.json ├── config ├── bootstrap.php ├── bootstrap │ ├── action.php │ ├── cache.php │ ├── connections.php │ ├── console.php │ ├── errors.php │ ├── g11n.php │ ├── libraries.php │ ├── media.php │ └── session.php └── routes.php ├── controllers └── PagesController.php ├── extensions ├── adapter │ └── empty ├── command │ └── empty ├── data │ └── source │ │ └── empty └── helper │ └── empty ├── index.php ├── libraries ├── _source │ └── empty └── empty ├── models └── empty ├── resources ├── g11n │ └── empty └── tmp │ ├── cache │ └── templates │ │ └── empty │ ├── logs │ └── empty │ └── tests │ └── empty ├── tests ├── cases │ ├── controllers │ │ └── empty │ ├── extensions │ │ ├── adapter │ │ │ └── empty │ │ ├── command │ │ │ └── empty │ │ ├── data │ │ │ └── source │ │ │ │ └── empty │ │ └── helper │ │ │ └── empty │ └── models │ │ └── empty ├── functional │ └── empty ├── integration │ └── empty └── mocks │ └── empty ├── views ├── _errors │ └── development.html.php ├── elements │ └── empty ├── layouts │ ├── default.html.php │ ├── default.xml.php │ └── error.html.php └── pages │ └── home.html.php ├── web.config └── webroot ├── .htaccess ├── css ├── bootstrap.min.css ├── debug.css ├── lithified.css └── testified.css ├── favicon.ico ├── img └── empty ├── index.php ├── js └── empty └── web.config /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnionOfRAD/framework/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnionOfRAD/framework/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnionOfRAD/framework/HEAD/.htaccess -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnionOfRAD/framework/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnionOfRAD/framework/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnionOfRAD/framework/HEAD/composer.json -------------------------------------------------------------------------------- /config/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnionOfRAD/framework/HEAD/config/bootstrap.php -------------------------------------------------------------------------------- /config/bootstrap/action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnionOfRAD/framework/HEAD/config/bootstrap/action.php -------------------------------------------------------------------------------- /config/bootstrap/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnionOfRAD/framework/HEAD/config/bootstrap/cache.php -------------------------------------------------------------------------------- /config/bootstrap/connections.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnionOfRAD/framework/HEAD/config/bootstrap/connections.php -------------------------------------------------------------------------------- /config/bootstrap/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnionOfRAD/framework/HEAD/config/bootstrap/console.php -------------------------------------------------------------------------------- /config/bootstrap/errors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnionOfRAD/framework/HEAD/config/bootstrap/errors.php -------------------------------------------------------------------------------- /config/bootstrap/g11n.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnionOfRAD/framework/HEAD/config/bootstrap/g11n.php -------------------------------------------------------------------------------- /config/bootstrap/libraries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnionOfRAD/framework/HEAD/config/bootstrap/libraries.php -------------------------------------------------------------------------------- /config/bootstrap/media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnionOfRAD/framework/HEAD/config/bootstrap/media.php -------------------------------------------------------------------------------- /config/bootstrap/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnionOfRAD/framework/HEAD/config/bootstrap/session.php -------------------------------------------------------------------------------- /config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnionOfRAD/framework/HEAD/config/routes.php -------------------------------------------------------------------------------- /controllers/PagesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnionOfRAD/framework/HEAD/controllers/PagesController.php -------------------------------------------------------------------------------- /extensions/adapter/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/command/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/data/source/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/helper/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnionOfRAD/framework/HEAD/index.php -------------------------------------------------------------------------------- /libraries/_source/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/g11n/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/tmp/cache/templates/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/tmp/logs/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/tmp/tests/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cases/controllers/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cases/extensions/adapter/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cases/extensions/command/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cases/extensions/data/source/empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/cases/extensions/helper/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cases/models/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/mocks/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /views/_errors/development.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnionOfRAD/framework/HEAD/views/_errors/development.html.php -------------------------------------------------------------------------------- /views/elements/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /views/layouts/default.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnionOfRAD/framework/HEAD/views/layouts/default.html.php -------------------------------------------------------------------------------- /views/layouts/default.xml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnionOfRAD/framework/HEAD/views/layouts/default.xml.php -------------------------------------------------------------------------------- /views/layouts/error.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnionOfRAD/framework/HEAD/views/layouts/error.html.php -------------------------------------------------------------------------------- /views/pages/home.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnionOfRAD/framework/HEAD/views/pages/home.html.php -------------------------------------------------------------------------------- /web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnionOfRAD/framework/HEAD/web.config -------------------------------------------------------------------------------- /webroot/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnionOfRAD/framework/HEAD/webroot/.htaccess -------------------------------------------------------------------------------- /webroot/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnionOfRAD/framework/HEAD/webroot/css/bootstrap.min.css -------------------------------------------------------------------------------- /webroot/css/debug.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnionOfRAD/framework/HEAD/webroot/css/debug.css -------------------------------------------------------------------------------- /webroot/css/lithified.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnionOfRAD/framework/HEAD/webroot/css/lithified.css -------------------------------------------------------------------------------- /webroot/css/testified.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnionOfRAD/framework/HEAD/webroot/css/testified.css -------------------------------------------------------------------------------- /webroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnionOfRAD/framework/HEAD/webroot/favicon.ico -------------------------------------------------------------------------------- /webroot/img/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webroot/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnionOfRAD/framework/HEAD/webroot/index.php -------------------------------------------------------------------------------- /webroot/js/empty: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /webroot/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnionOfRAD/framework/HEAD/webroot/web.config --------------------------------------------------------------------------------