-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
executable file
·50 lines (50 loc) · 1.31 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
{
"name": "phpjuice/slopeone",
"type": "library",
"description": "PHP implementation of the Weighted Slope One rating-based collaborative filtering scheme.",
"keywords": [
"recommendation",
"recommender",
"collaborative filtering",
"weighted slope one"
],
"license": "MIT",
"authors": [
{
"name": "Mohammed Elhaouari",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/phpjuice/slopeone/issues",
"source": "https://github.com/phpjuice/slopeone"
},
"require": {
"php": "^7.4|^8.0|^8.1"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.4",
"phpstan/phpstan": "^0.12",
"pestphp/pest": "^1.18"
},
"autoload": {
"psr-4": {
"PHPJuice\\Slopeone\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PHPJuice\\Slopeone\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/pest --colors=always",
"analyse": "phpstan analyse --ansi --debug",
"php-cs-fixer": [
"php-cs-fixer fix src --rules=@PSR2",
"php-cs-fixer fix tests --rules=@PSR2"
]
},
"minimum-stability": "stable"
}