-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
45 lines (45 loc) · 1.25 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
{
"name": "nawarian/raylib-ffi",
"description": "Raylib bindings for PHP using FFI",
"type": "library",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Nawarian",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"ext-ffi": "^8.1",
"php": "^8.1",
"webmozart/assert": "^1.10"
},
"require-dev": {
"vimeo/psalm": "^4.7",
"squizlabs/php_codesniffer": "^3.5",
"captainhook/captainhook": "^5.4",
"captainhook/plugin-composer": "^5.2",
"phpunit/phpunit": "^9.5",
"phpspec/prophecy-phpunit": "^2.0",
"laminas/laminas-code": "^4.4"
},
"autoload": {
"psr-4": {
"Nawarian\\Raylib\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Nawarian\\Tests\\Raylib\\": "tests/"
},
"files": ["src/generated-functions.php"]
},
"scripts": {
"phpunit": "phpunit",
"phpcs": "phpcs --standard=PSR12 -s src/ examples/",
"psalm": "psalm",
"checks": ["@psalm", "@phpcs", "@phpunit"],
"generate-functions": "Nawarian\\Raylib\\Utils\\Composer\\CommandHandler::generateFunctionsFile"
}
}