forked from phpspec/php-diff
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
50 lines (50 loc) · 1.23 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
{
"name": "phalcongelist/php-diff",
"type": "library",
"description": "A comprehensive library for generating differences between two hashable objects (strings or arrays).",
"license": "BSD-3-Clause",
"keywords": [
"php", "diff", "phalcon"
],
"authors": [
{
"name": "Phalcon Team",
"email": "[email protected]",
"homepage": "http://phalconphp.com/en/team"
},
{
"name": "Chris Boulton",
"homepage": "http://github.com/chrisboulton"
}
],
"support": {
"source": "https://github.com/phalcongelist/php-diff",
"issues": "https://github.com/phalcongelist/php-diff/issues",
"wiki": "https://github.com/phalcongelist/php-diff/wiki"
},
"require": {
"php": ">= 5.4",
"ext-mbstring": "*"
},
"require-dev": {
"squizlabs/php_codesniffer": "~2.7"
},
"autoload": {
"psr-4": {
"Phalcon\\": "src/"
}
},
"config": {
"bin-dir": "bin"
},
"scripts": {
"cs-test": [
"bin/phpcs src/"
]
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}