4d84a934
曹明
初始代码提交
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{
"name": "jpush/jpush",
"type": "library",
"description": "JPush API PHP Client",
"homepage": "https://github.com/jpush/jpush-api-php-client",
"license": "MIT",
"authors": [
{
"name": "JPush",
"email": "support@jpush.cn",
"homepage": "https://www.jpush.cn/",
"role": "Developer"
}
],
"require": {
"php": ">=5.3.3",
"ext-curl": "*"
},
"require-dev": {
"phpunit/phpunit": "*"
},
"autoload" : {
"psr-4": {"JPush\\": "src/JPush/"}
},
"autoload-dev": {
"psr-4": { "JPush\\Tests\\": "tests/" }
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}
|