brightmoon / framework
BrightMoon Framework
Installs: 18
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/brightmoon/framework
Requires
- php: ^8.1
 - nesbot/carbon: ^2.41
 - vlucas/phpdotenv: ^5.3
 
This package is auto-updated.
Last update: 2025-10-10 19:46:18 UTC
README
Bright Moon Framework
Cấu trúc files/folder
BrightMoon/
├── Console/
│   ├── resources/
│   │   ├── controller.stub
│   │   ├── help.php
│   │   ├── model.stub
│   ├── Application.php
│   ├── Console.php
│   ├── Controller.php
│   ├── Model.php
│   ├── Route.php
├── Contracts/
│   ├── Support/
│   │   ├── Arrayable.php
│   │   ├── Jsonable.php
│   ├── Connection.php
│   ├── Hasher.php
│   ├── Session.php
├── Database/
│   ├── Query/
│   │   ├── Processors/
│   │   │   ├── MySQLProcessor.php
│   │   │   ├── PostgreSQLProcessor.php
│   │   │   ├── Processor.php
│   │   ├── Builder.php
│   │   ├── JoinClause.php
│   ├── Relations/
│   │   ├── BelongsTo.php
│   │   ├── HasMany.php
│   │   ├── HasRelationships.php
│   ├── ConnectionFactory.php
│   ├── DatabaseManager.php
│   ├── MySQLConnection.php
│   ├── PostgreSQLConnection.php
│   ├── SQLiteConnection.php
│   ├── SQLServerConnection.php
├── Exceptions/
│   ├── resources/
│   │   ├── css/
│   │   │   ├── style.css
│   │   ├── BrightMoonErrorView.php
│   │   ├── BrightMoonExceptionView.php
│   ├── BrightMoonException.php
│   ├── BrightMoonRouteException.php
│   ├── BrightMoonViewException.php
│   ├── Handler.php
├── Foundation/
│   ├── Providers/
│   │   ├── AppServiceProvider.php
│   │   ├── RouteServiceProvider.php
│   │   ├── ServiceProvider.php
│   ├── Application.php
│   ├── Config.php
│   ├── Container.php
│   ├── Session.php
├── Hashing/
│   ├── BcrytHasher.php
│   ├── Hash.php
├── Http/
│   ├── Request.php
│   ├── Response.php
├── Pagination/
│   ├── resources/
│   │   ├── pagination.php
│   │   ├── simple-pagination.php
│   ├── AbstractPaginator.php
│   ├── Paginator.php
│   ├── SimplePaginator.php
├── Routing/
│   ├── Route.php
│   ├── RouteGroup.php
│   ├── Router.php
│   ├── RouteRegistrar.php
│   ├── UrlGenerator.php
├── Support/
│   ├── Facades/
│   ├── Faker/
│   ├── Arr.php
│   ├── Collection.php
│   ├── Dumper.php
│   ├── Env.php
│   ├── helpers.php
│   ├── Str.php
│   ├── Stringable.php
├── Controller.php
├── Model.php
├── View.php
BrightMoonFaker/
├── Providers
│   ├── vi_VN/
│   │   ├── Address.php
│   │   ├── Internet.php
│   │   ├── Person.php
│   │   ├── PhoneNumber.php
│   ├── Person.php