Skip to content

Commit 50a2fd1

Browse files
authored
Merge pull request #5 from sinri/remove-web
3.4.0 Remove web
2 parents f4eb682 + eb81052 commit 50a2fd1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+524
-4180
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log of Ark 3
22

3+
## Version 3.3.0
4+
5+
Use independent Ark-Web.
6+
37
## Version 3.2.3
48

59
Add the final handler to WebService, with start time and end time.

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ Ark requests PHP 7.
2525
If you need Redis, you might need to declare the reference of `predis/predis`.
2626
Since version 2.1, Ark-Core and Ark-Curl use version 2.
2727
Since version 2.4, Ark-Cache use version 2 to support PSR-16.
28+
Since version 3.3, Ark-Web became independent as 1.0.0.
2829
Now Ark has been in 3.x.
2930

3031
## Toolkit Map
@@ -34,6 +35,7 @@ Now Ark has been in 3.x.
3435
Basic Functions
3536

3637
* `sinri/ark-core` [![Packagist](https://img.shields.io/packagist/v/sinri/ark-core.svg)](https://packagist.org/packages/sinri/ark-core)
38+
* `sinri/ark-web` [![Packagist](https://img.shields.io/packagist/v/sinri/ark-web.svg)](https://packagist.org/packages/sinri/ark-web)
3739
* `sinri/ark-curl` [![Packagist](https://img.shields.io/packagist/v/sinri/ark-curl.svg)](https://packagist.org/packages/sinri/ark-curl)
3840
* `sinri/ark-cache` [![Packagist](https://img.shields.io/packagist/v/sinri/ark-cache.svg)](https://packagist.org/packages/sinri/ark-cache)
3941
* `sinri/ark-xml` [![Packagist](https://img.shields.io/packagist/v/sinri/ark-xml.svg)](https://packagist.org/packages/sinri/ark-xml)
@@ -55,6 +57,8 @@ Queue Related
5557

5658
* `sinri/ark-queue` [![Packagist](https://img.shields.io/packagist/v/sinri/ark-queue.svg)](https://packagist.org/packages/sinri/ark-queue)
5759
* `sinri/ark-lock` [![Packagist](https://img.shields.io/packagist/v/sinri/ark-lock.svg)](https://packagist.org/packages/sinri/ark-lock)
60+
* `sinri/ark-event` [![Packagist](https://img.shields.io/packagist/v/sinri/ark-event.svg)](https://packagist.org/packages/sinri/ark-event)
61+
5862

5963
Lightweight Directory Access Protocol
6064

composer.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,24 @@
1212
"minimum-stability": "stable",
1313
"require": {
1414
"php": "~7.0",
15-
"sinri/ark-core": "~2.7",
16-
"sinri/ark-cache": "~2.2",
15+
"sinri/ark-core": "~2.7.5",
16+
"sinri/ark-cache": "~2.4",
17+
"sinri/ark-web": "~3.4.0",
1718
"ralouphie/getallheaders": "^2.0",
1819
"jenssegers/agent": "^2.6",
1920
"ralouphie/mimey": "^1.0",
2021
"ext-json": "*"
2122
},
2223
"require-dev": {
23-
"sinri/ark-curl": "~2.0",
24+
"sinri/ark-curl": "~2.1",
2425
"sinri/ark-pdo": "~1.7",
2526
"sinri/ark-queue": "~2.5",
2627
"ext-curl": "*"
2728
},
2829
"suggest": {
2930
"ext-pcntl": "*",
30-
"sinri/ark-curl": "~2.0",
31-
"sinri/ark-pdo": "~1.6",
31+
"sinri/ark-curl": "~2.1",
32+
"sinri/ark-pdo": "~1.7",
3233
"sinri/ark-redis": "~1.1",
3334
"sinri/ark-sqlite3": "~1.1",
3435
"sinri/ark-mysqli": "~1.2",

0 commit comments

Comments
 (0)