-
Notifications
You must be signed in to change notification settings - Fork 488
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 766 Bytes
/
composer.json
File metadata and controls
44 lines (44 loc) · 766 Bytes
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
{
"name": "algorithm-php",
"description": "algorithm-php",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "pushaowei"
}
],
"require-dev": {
"phpunit/phpunit": "~6.0",
"mockery/mockery": "~0.9"
},
"autoload": {
"classmap": [
"./src"
]
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"prefer-stable": true,
"config": {
"optimize-autoloader": true
},
"repositories": {
"packagist": {
"type": "composer",
"url": "https://packagist.phpcomposer.com"
}
},
"require": {
"ext-json": "*",
"ext-ctype": "*",
"ext-openssl": "*",
"php": ">=5.6.4",
"ext-curl": "*",
"stojg/recommend": "^1.0",
"ext-iconv": "*"
}
}