-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
60 lines (60 loc) · 1.91 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
{
"name": "serafim/ffi-sdl",
"description": "SDL FFI bindings for the PHP language",
"type": "library",
"license": "MIT",
"support": {
"issues": "https://github.com/SerafimArts/ffi-sdl/issues",
"source": "https://github.com/SerafimArts/ffi-sdl"
},
"keywords": ["sdl", "ffi", "bindings", "opengl", "graphics", "library", "direct media"],
"homepage": "https://github.com/SerafimArts/ffi-sdl",
"authors": [
{
"name": "Kirill Nesmeyanov",
"email": "nesk@xakep.ru"
}
],
"require": {
"php": "^8.1",
"ext-ffi": "*",
"ffi-headers/contracts": "^1.0",
"ffi/env": "^1.0",
"ffi/location": "^1.0",
"ffi/preprocessor": "^0.2",
"ffi/proxy": "^1.0",
"psr/simple-cache": "^1.0|^2.0|^3.0"
},
"autoload": {
"psr-4": {
"Serafim\\SDL\\": "src"
}
},
"require-dev": {
"ffi/ide-helper-generator": "^0.1|^1.0",
"friendsofphp/php-cs-fixer": "^3.65",
"symfony/cache": "^5.4|^6.0|^7.0",
"phpstan/phpstan": "^2.0.3",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0"
},
"scripts": {
"linter": "@linter:check",
"linter:check": "phpstan analyse --configuration phpstan.neon",
"linter:baseline": "phpstan analyse --configuration phpstan.neon --generate-baseline",
"phpcs": "@phpcs:check",
"phpcs:check": "php-cs-fixer fix --config=.php-cs-fixer.php --allow-risky=yes --verbose --diff --dry-run",
"phpcs:fix": "php-cs-fixer fix --config=.php-cs-fixer.php --allow-risky=yes --verbose --diff"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev",
"dev-main": "2.0.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}