-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
76 lines (76 loc) · 2.29 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "ffi/preprocessor",
"type": "library",
"description": "Simple C Preprocessor",
"license": "MIT",
"keywords": ["ffi", "parser", "compiler", "c", "headers", "preprocessor"],
"support": {
"source": "https://github.com/php-ffi/preprocessor",
"issues": "https://github.com/php-ffi/preprocessor/issues",
"docs": "https://github.com/php-ffi/preprocessor/blob/master/README.md"
},
"authors": [
{
"name": "Nesmeyanov Kirill",
"email": "[email protected]",
"homepage": "https://nesk.me",
"role": "maintainer"
}
],
"require": {
"php": "^7.4|^8.0",
"ffi/preprocessor-contracts": "^1.0",
"psr/log": "^1.0|^2.0|^3.0",
"phplrt/parser": "^3.6",
"phplrt/lexer": "^3.6",
"symfony/polyfill-php80": "^1.27",
"symfony/polyfill-ctype": "^1.27"
},
"autoload": {
"psr-4": {
"FFI\\Preprocessor\\": "src"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^3.53",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"monolog/monolog": "^2.9|^3.0",
"phplrt/phplrt": "^3.6"
},
"autoload-dev": {
"psr-4": {
"FFI\\Preprocessor\\Tests\\": "tests"
}
},
"provide": {
"ffi/preprocessor-contracts-implementation": "^1.0"
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"scripts": {
"test": ["@test:unit"],
"test:unit": "phpunit --testdox --testsuite=unit",
"linter": "@linter:check",
"linter:check": "phpstan analyse --configuration phpstan.neon",
"linter:baseline": "@linter:check -- --generate-baseline",
"phpcs": "@phpcs:check",
"phpcs:check": "@phpcs:fix --dry-run",
"phpcs:fix": "php-cs-fixer fix --config=.php-cs-fixer.php --allow-risky=yes --verbose --diff"
},
"extra": {
"branch-alias": {
"dev-main": "1.0.x-dev",
"dev-master": "1.0.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}