-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.07 KB
/
Copy pathcomposer.json
File metadata and controls
48 lines (48 loc) · 1.07 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
47
48
{
"name": "alejandro-yakovlev/cf-php",
"type": "library",
"description": "PHP implementation of the rating-based collaborative filtering.",
"keywords": [],
"homepage": "https://github.com/alejandro-yakovlev/cf-php",
"license": "MIT",
"authors": [
{
"name": "Alejandro Yakovlev",
"email": "yakovlevalejandro@gmail.com"
}
],
"require": {
"php": ">=8.2",
"markrogoyski/math-php": "^2.8"
},
"autoload": {
"psr-4": {
"CFPHP\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CFPHP\\Tests\\": "tests/"
}
},
"require-dev": {
"pestphp/pest": "^2.30",
"phpstan/phpstan": "^1.10",
"friendsofphp/php-cs-fixer": "^3.46"
},
"scripts": {
"example": "php test.php",
"test": "vendor/bin/pest --colors=always",
"analyse": "vendor/bin/phpstan analyse --ansi --debug",
"php-cs-fixer": [
"php-cs-fixer fix src --rules=@PSR2",
"php-cs-fixer fix tests --rules=@PSR2"
]
},
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}