-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.3 KB
/
Copy pathcomposer.json
File metadata and controls
46 lines (46 loc) · 1.3 KB
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
{
"name": "lisachenko/native-php-matrix",
"description": "PHP extension that provides Matrix class powered with overloaded operators",
"type": "library",
"keywords": ["ffi", "matrix", "operator-overloading", "z-engine"],
"license": "MIT",
"authors": [
{
"name": "Alexander Lisachenko",
"email": "lisachenko.it@gmail.com"
}
],
"require": {
"php": "~8.4.0",
"ext-ffi": "*",
"lisachenko/z-engine": "dev-master"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.75",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^12.5"
},
"autoload": {
"psr-4": {
"Lisachenko\\NativePhpMatrix\\": "src/"
},
"files": ["bootstrap.php"]
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "phpunit",
"phpstan": "phpstan analyse",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix"
},
"scripts-descriptions": {
"test": "Run the test suite",
"phpstan": "Run static analysis at the maximum level",
"cs:check": "Check coding standards without fixing",
"cs:fix": "Fix coding standards"
},
"config": {
"sort-packages": true
}
}