midnite81 / core
用于laravel项目中核心活动的包
v2.0.24
2024-09-05 17:38 UTC
Requires
- php: ^8.1
- doctrine/annotations: ^2.0
- php-coveralls/php-coveralls: ^0.1.0
- ramsey/uuid: ^4.7
Requires (Dev)
- laravel/pint: ^1.1
- orchestra/testbench: ^7.6
- pestphp/pest: ^1.21
- pestphp/pest-plugin-parallel: ^1.2
- phpstan/phpstan: ^1.8
- dev-main
- v2.0.24
- v2.0.23
- v2.0.22
- v2.0.21
- v2.0.20
- v2.0.19
- v2.0.18
- v2.0.17
- v2.0.16
- v2.0.15
- v2.0.14
- v2.0.13
- v2.0.12
- v2.0.11
- v2.0.10
- v2.0.9
- v2.0.8
- v2.0.7
- v2.0.6
- v2.0.5
- v2.0.4
- v2.0.3
- v2.0.2
- v2.0.1
- v2.0.0
- v1.0.28
- v1.0.27
- v1.0.26
- v1.0.25
- v1.0.24
- v1.0.23
- v1.0.22
- v1.0.21
- v1.0.20
- v1.0.19
- v1.0.18
- v1.0.17
- v1.0.16
- v1.0.15
- v1.0.14
- v1.0.13
- v1.0.12
- v1.0.11
- v1.0.10
- v1.0.9
- v1.0.8
- v1.0.7
- v1.0.6
- v1.0.5
- v1.0.4
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0.0
- dev-feature/validation-wrapping
- dev-feature/enum-to-javascript
- dev-feature/ip-matching
- dev-feature/network-properties
- dev-feature/versioning-and-enums
- dev-feature/incremented_sort_order
- dev-feature/getters-and-setters
- dev-feature/refactor-entities
- dev-internal/rename-uuid
- dev-feature/schema-and-filesystem
- dev-feature/entities-to-array-access
- dev-feature/time-conversion
- dev-feature/add-debug-middleware
- dev-fix/query-string
- dev-feature/carbon-formatting-on-entities
- dev-feature/count
- dev-feature/ignite
This package is auto-updated.
Last update: 2024-09-05 17:38:55 UTC
README
这是一个用于laravel项目中核心活动的包。这是一个正在进行中的作品,因此文档也视为正在进行中的工作,不一定是最新的。
此包包含:
安装
此包需要PHP 8.1+,并且包含一个Laravel Service Provider,它是自动注册的。
要通过composer安装,请在composer.json中包含此包。
"midnite81/core": "^2.0"
运行composer install或composer update以下载依赖项,或者您可以运行;
composer require midnite81/core
服务提供者
默认情况下,Midnite81\Core\CoreServiceProvider
由laravel自动注册,除非您已主动关闭应用程序中的自动注册。Midnite81\Core附带了一个额外的服务提供者,用于启用此包附带的所有命令。要安装此(或如果需要,两者),您需要将它们添加到您的config/app.php
'providers' => [ // ... \Midnite81\Core\CoreServiceProvider::class, // this is auto installed \Midnite81\Core\CoreCommandServiceProvider::class // ... ]
配置文件
如果您打算使用FireScriptCommand或QuickFireScriptCommand,您可能希望发布配置文件。
php artisan vendor:publish --provider="Midnite81\Core\CoreServiceProvider"
一切就绪!
现在您已经准备好使用midnite81/core了。如果您有任何建议,请告诉我或在该包的问题部分中记录任何问题。