-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
58 lines (58 loc) · 1.61 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
{
"name": "chasdevs/avro-to-php",
"description": "Compile Avro .avsc files into PHP.",
"type": "library",
"license": "MIT",
"support": {
"issues": "https://github.com/chasdevs/avro-to-php/issues",
"source": "https://github.com/chasdevs/avro-to-php"
},
"authors": [
{
"name": "Chas DeVeas",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"bramus/monolog-colored-line-formatter": "~3.0",
"chasdevs/avro-parser": "^0.0.5",
"flix-tech/avro-serde-php": "^1.3",
"illuminate/log": "^v9.0",
"laravel-zero/framework": "^9.0",
"myclabs/php-enum": "^1.7",
"twig/twig": "^3.0"
},
"require-dev": {
"mockery/mockery": "^1.0",
"mvccore/ext-debug-tracy": "^5.0",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"AvroToPhp\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"Tests\\Expected\\Records\\": "tests/fixtures/expected",
"Tests\\Expected\\": "tests/fixtures/expected",
"Tests\\Expected\\Records\\Nested\\": "tests/fixtures/expected"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"scripts": {
"post-create-project-cmd": [
"@php application app:rename"
],
"test": "vendor/bin/phpunit tests"
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": ["builds/avro-to-php"]
}