├── public
└── assets
│ ├── js
│ ├── admin.js
│ └── retina.js
│ ├── img
│ ├── logo-login.png
│ └── logo-login@2x.png
│ └── css
│ ├── icons
│ ├── flaticons-stroke.eot
│ ├── flaticons-stroke.ttf
│ └── flaticons-stroke.woff
│ ├── animations.less
│ └── styles.less
├── readme.md
├── tests
├── cases
│ └── posts.test.php
├── phpunit.xml
└── bootstrap.php
├── views
├── pages
│ ├── create.phtml
│ ├── edit.phtml
│ └── index.phtml
├── users
│ └── index.phtml
├── categories
│ └── index.phtml
├── layout.phtml
├── posts
│ ├── index.phtml
│ ├── edit.phtml
│ └── create.phtml
├── login.phtml
└── partials
│ └── menu.phtml
├── src
└── Anchor
│ ├── Mappers
│ ├── Menu.php
│ ├── Comments.php
│ ├── Users.php
│ ├── Categories.php
│ ├── Themes.php
│ ├── Meta.php
│ ├── Templates.php
│ ├── Base.php
│ ├── Pages.php
│ └── Posts.php
│ ├── Services
│ ├── Registry.php
│ ├── Validator
│ │ └── Rule.php
│ ├── Contracts
│ │ └── Validatable.php
│ ├── I18n.php
│ ├── Csrf.php
│ ├── Validator.php
│ ├── Nav.php
│ ├── Auth.php
│ ├── Date.php
│ ├── Assets.php
│ └── Messages.php
│ ├── Exceptions
│ └── HttpNotFound.php
│ ├── Controllers
│ ├── Feeds.php
│ ├── Page.php
│ ├── Admin
│ │ ├── Categories.php
│ │ ├── Backend.php
│ │ ├── Users.php
│ │ ├── Pages.php
│ │ └── Posts.php
│ ├── Posts.php
│ ├── Controller.php
│ ├── Article.php
│ └── Frontend.php
│ ├── Models
│ ├── Category.php
│ ├── Comment.php
│ ├── User.php
│ ├── Page.php
│ └── Post.php
│ ├── Forms
│ ├── Fields
│ │ ├── Textarea.php
│ │ ├── Password.php
│ │ ├── Button.php
│ │ ├── Hidden.php
│ │ ├── Text.php
│ │ ├── Select.php
│ │ └── Field.php
│ ├── Login.php
│ ├── Post.php
│ └── Form.php
│ └── Providers
│ └── ShipServiceProvider.php
├── functions
├── metadata.php
├── old
│ ├── config.php
│ ├── metadata.php
│ ├── author.php
│ ├── users.php
│ ├── posts.php
│ ├── search.php
│ ├── categories.php
│ ├── pages.php
│ ├── menus.php
│ ├── comments.php
│ ├── helpers.php
│ └── articles.php
├── author.php
├── pages.php
├── posts.php
├── search.php
├── categories.php
├── menus.php
├── helpers.php
├── articles.php
├── comments.php
└── depreciated.php
├── routes
├── categories.php
├── menu.php
├── themes.php
├── pages.php
├── admin.php
├── posts.php
├── plugins.php
├── metadata.php
├── site.php
├── fields.php
├── variables.php
├── comments.php
└── users.php
├── routes.php
└── composer.json
/public/assets/js/admin.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/readme.md:
--------------------------------------------------------------------------------
1 | # Anchor Core
2 |
3 | Core library for Anchor.
--------------------------------------------------------------------------------
/public/assets/img/logo-login.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/drFabio/anchor-core/master/public/assets/img/logo-login.png
--------------------------------------------------------------------------------
/public/assets/img/logo-login@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/drFabio/anchor-core/master/public/assets/img/logo-login@2x.png
--------------------------------------------------------------------------------
/public/assets/css/icons/flaticons-stroke.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/drFabio/anchor-core/master/public/assets/css/icons/flaticons-stroke.eot
--------------------------------------------------------------------------------
/public/assets/css/icons/flaticons-stroke.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/drFabio/anchor-core/master/public/assets/css/icons/flaticons-stroke.ttf
--------------------------------------------------------------------------------
/public/assets/css/icons/flaticons-stroke.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/drFabio/anchor-core/master/public/assets/css/icons/flaticons-stroke.woff
--------------------------------------------------------------------------------
/tests/cases/posts.test.php:
--------------------------------------------------------------------------------
1 |
2 |
3 | Pages
5 |
6 |
7 |
15 | Users
5 |
6 |
7 |
15 | Categories
5 |
6 |
7 |
15 |