Skip to content
This repository has been archived by the owner on Nov 2, 2020. It is now read-only.

Commit

Permalink
build(Composer): remove unnecessary ext and some fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Rhilip committed Apr 20, 2020
1 parent f63ed00 commit 1235d86
Show file tree
Hide file tree
Showing 4 changed files with 147 additions and 71 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
### Fix
- **API:** ApiMiddleware not work after change Response Component (6da82a7)
- **Bencode:** Fix dict keys may not in sorted order (81f0783)
- **Composer:** Fix wrong composer.json format (3f17e03)
- **Config:** Fix JSON type config return False (1129008)
- **Cron:** Fix components lost in CronTabProcess (1ced4bf)
- **Redis:** Fix wrong type of Redis call function hMset() to hMSet() (a163150)
Expand Down Expand Up @@ -54,6 +55,7 @@

### Style
- **Bencode:** Separate Bencode library to `Rhilip/Bencode` (18cbfa1)
- **Request:** Move route as a part of attributes (aee4682)
- **cs-fixer:** Update Composer config and php-cs-fixer whole project (e734812)
- **gitignore:** Add .php_cs.cache to .gitignore (15a2a15)

Expand Down
7 changes: 4 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,9 @@
"ext-curl": "*",
"ext-gd": "*",
"ext-iconv": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-pcntl": "*",
"ext-pdo": "*",
"ext-redis": "*",
"ext-swoole": "*",
Expand All @@ -50,7 +48,10 @@
"config": {
"preferred-install": "dist",
"optimize-autoloader": true,
"sort-packages": true
"sort-packages": true,
"platform": {
"ext-swoole": "4.4.14"
}
},
"autoload": {
"psr-4": {
Expand Down
Loading

0 comments on commit 1235d86

Please sign in to comment.