-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
executable file
·55 lines (55 loc) · 1.43 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
{
"name": "phpjuice/opencf",
"description": "PHP implementation of the (Weighted Slopeone,Cosine, Weighted Cosine) rating-based collaborative filtering schemes.",
"keywords": [
"recommendation",
"recommender",
"collaborative filtering",
"weighted slope one",
"collaborative filtering engine"
],
"license": "MIT",
"authors": [
{
"name": "Mohammed Elhaouari",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/phpjuice/opencf/issues",
"source": "https://github.com/phpjuice/opencf"
},
"require": {
"php": "^7.4|^8.0|^8.1"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"pestphp/pest": "^1.23",
"friendsofphp/php-cs-fixer": "^3.34"
},
"autoload": {
"psr-4": {
"OpenCF\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"OpenCF\\Tests\\": "tests"
}
},
"scripts": {
"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
}
}
}