-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(composer.json): change package name 📝
change package name to lower
- Loading branch information
Showing
1 changed file
with
24 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,34 @@ | ||
{ | ||
"name": "TIGERB/easy-php", | ||
"name": "tigerb/easy-php", | ||
"description": "A lightweight PHP framework for studying", | ||
"version":"0.6.7", | ||
"version": "0.6.7", | ||
"type": "framework, easy-php, php framework", | ||
"authors": [ | ||
{ | ||
"name": "tigerb", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"homepage": "http://php.tiegrb.cn/", | ||
"license": "MIT", | ||
"minimum-stability": "stable", | ||
"authors": [{ | ||
"name": "tigerb", | ||
"email": "[email protected]" | ||
}], | ||
"require-dev": { | ||
"squizlabs/php_codesniffer": "*", | ||
"phpunit/phpunit": "^6.0" | ||
}, | ||
"require": { | ||
"mongodb/mongodb": "^1.1" | ||
}, | ||
"scripts": { | ||
"post-install-cmd": [ | ||
"cp .env.example .env", | ||
"chmod -R 777 runtime", | ||
"composer dump-autoload --optimize" | ||
], | ||
"post-root-project-cmd": [ | ||
"composer install" | ||
], | ||
"pre-status-cmd": [ | ||
"cp .env.example .env", | ||
"rm -rf runtime/*" | ||
] | ||
} | ||
} | ||
} |