-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathcomposer.json
52 lines (52 loc) · 1.04 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
{
"name": "ckiosidis/avro",
"description": "A library for using Apache Avro with PHP.",
"keywords": ["serialization"],
"homepage": "https://avro.apache.org/",
"license": "Apache-2.0",
"authors": [
{
"name": "Michael Glaesemann",
"email": "grzm@seespotcode.net"
},
{
"name": "Andy Wick",
"email": "awick@purple.org"
},
{
"name": "Saleem Shafi",
"email": "saleemshafi@gmail.com"
},
{
"name": "A B",
"email": "abawany@x.com"
},
{
"name": "Doug Cutting",
"email": "cutting@apache.org"
},
{
"name": "Tom White",
"email": "tom@cloudera.com"
}
],
"require": {
"php": ">=5.3.3"
},
"require-dev": {
"jakub-onderka/php-parallel-lint": "^0.9",
"phpunit/phpunit": "^4.0.0"
},
"suggest": {
"ext-gmp": "Large integer support for 32-bit platforms."
},
"autoload": {
"classmap": ["lib/"]
},
"scripts": {
"test": [
"parallel-lint . --exclude vendor",
"phpunit test/AllTests.php"
]
}
}