12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- {
- "name": "ibrand/common",
- "type": "library",
- "description": "iBrand common server.",
- "keywords": [
- "iBrand",
- "common",
- "server"
- ],
- "license": "MIT",
- "authors": [
- {
- "name": "shjchen",
- "email": "ibrand.shjchen@foxmail.com"
- }
- ],
- "require": {
- "php": ">=7.0",
- "overtrue/http": "~1.0",
- "barryvdh/laravel-cors": "^0.11.2"
- },
- "require-dev": {
- "phpunit/phpunit": "~6.0",
- "orchestra/testbench": "~3.5",
- "orchestra/database": "~3.5"
- },
- "autoload": {
- "psr-4": {
- "iBrand\\Common\\": "src/"
- },
- "files": [
- "src/helpers.php"
- ]
- },
- "autoload-dev": {
- "psr-4": {
- }
- },
- "extra": {
- "laravel": {
- "providers": [
- "iBrand\\Common\\CommonServiceProvider",
- "iBrand\\Common\\Wechat\\WechatServiceProvider",
- "iBrand\\Common\\Platform\\ServiceProvider"
- ],
- "aliases": {
- }
- }
- },
- "minimum-stability": "dev",
- "prefer-stable": true
- }
|