-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
66 lines (66 loc) · 1.47 KB
/
composer.json
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "khs1994/example",
"description": "Create PHP Project By Composer",
"keywords": [
"php_project",
"sdk",
"api"
],
"homepage": "https://github.com/khs1994-php/example",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "khs1994",
"email": "[email protected]",
"homepage": "https://khs1994.com"
}
],
"support": {
"issues": "https://github.com/khs1994-php/example/issues"
},
"require": {
"php": ">=7.3.0",
"ext-curl": "*",
"ext-json": "*",
"ext-PDO": "*",
"pimple/pimple": "~3.0",
"khs1994/curl": "~18.06.0"
},
"require-dev": {
"phpunit/phpunit": "^8.1"
},
"config": {
"php": "7.2.34",
"optimize-autoloader": true,
"sort-packages": true,
"preferred-install": "dist"
},
"autoload": {
"psr-4": {
"Example\\": "src/Example/"
}
},
"autoload-dev": {
"psr-4": {
"Example\\Tests\\": "tests/Example/"
}
},
"scripts": {
"post-create-project-cmd": [
"@php -r \"copy('README.example.md', 'README.md');\"",
"@php -r \"copy('.gitattributes.example', '.gitattributes');\"",
"@php -r \"copy('CHANGELOG.example.md','CHANGELOG.md');\"",
"@php -r \"unlink('.gitattributes.example');unlink('README.example.md');unlink('CHANGELOG.example.md');\""
]
},
"scripts-descriptions": {
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "18.06-dev"
}
}
}