-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
55 lines (55 loc) · 1.45 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
{
"name": "klitsche/ffigen",
"type": "library",
"description": "FFI binding generator",
"keywords": [
"ffi",
"generator",
"binding"
],
"homepage": "https://klitsche.github.io/ffigen/",
"license": "MIT",
"authors": [
{
"name": "Dirk Adler",
"email": "[email protected]"
}
],
"bin": [
"bin/ffigen"
],
"require": {
"php": "^7.4 || ^8.0",
"ircmaxell/php-c-parser": "dev-master#fd8f5efefd0fcc6c5119d945694acaa3a6790ada",
"symfony/yaml": "^5.0",
"symfony/filesystem": "^5.0",
"symfony/console": "^5.0",
"brick/varexporter": "^0.3.2"
},
"autoload": {
"psr-4": {
"Klitsche\\FFIGen\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Klitsche\\FFIGen\\": "tests",
"Klitsche\\FFIGen\\Examples\\": "examples"
}
},
"require-dev": {
"phpunit/phpunit": "^9.1",
"symplify/easy-coding-standard": "^11.2"
},
"scripts": {
"test" : "vendor/bin/phpunit",
"test-coverage" : "vendor/bin/phpunit --coverage-text --coverage-clover=clover.xml",
"cs" : "vendor/bin/ecs check src tests examples --ansi",
"cs-fix" : "vendor/bin/ecs check src tests examples --ansi --fix"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}