|
1 | 1 | { |
2 | | - "name": "phpjuice/slopeone", |
3 | | - "type": "library", |
4 | | - "description": "PHP implementation of the Weighted Slope One rating-based collaborative filtering scheme.", |
5 | | - "keywords": ["recommendation","recommender","collaborative filtering","weighted slope one"], |
6 | | - "license": "MIT", |
7 | | - "authors": [ |
8 | | - { |
9 | | - "name": "EL-Haouari Mohammed", |
10 | | - |
11 | | - } |
12 | | - ], |
13 | | - "support": { |
14 | | - "issues": "https://github.com/PHPJuice/slopeone/issues", |
15 | | - "source": "https://github.com/PHPJuice/slopeone" |
16 | | - }, |
17 | | - "require": { |
18 | | - "php": ">=5.6" |
19 | | - }, |
20 | | - "autoload": { |
21 | | - "psr-4": { "PHPJuice\\Slopeone\\": "src" } |
22 | | - }, |
23 | | - "autoload-dev": { |
24 | | - "psr-4": { "PHPJuice\\Slopeone\\Tests\\": "test" } |
25 | | - }, |
26 | | - "scripts": { |
27 | | - "test": "./vendor/bin/phpunit", |
28 | | - "fix-coding-style": "PHP_CS_FIXER_IGNORE_ENV=1 $(PHP_BIN) vendor/bin/php-cs-fixer --diff -v fix" |
29 | | - }, |
30 | | - "minimum-stability": "stable", |
31 | | - "require-dev": { |
32 | | - "phpunit/phpunit": "^5.7 || ^6.5", |
33 | | - "friendsofphp/php-cs-fixer": "^2.3" |
34 | | - } |
| 2 | + "name": "phpjuice/slopeone", |
| 3 | + "type": "library", |
| 4 | + "description": "PHP implementation of the Weighted Slope One rating-based collaborative filtering scheme.", |
| 5 | + "keywords": [ |
| 6 | + "recommendation", |
| 7 | + "recommender", |
| 8 | + "collaborative filtering", |
| 9 | + "weighted slope one" |
| 10 | + ], |
| 11 | + "license": "MIT", |
| 12 | + "authors": [ |
| 13 | + { |
| 14 | + "name": "ELHaouari Mohammed", |
| 15 | + |
| 16 | + } |
| 17 | + ], |
| 18 | + "support": { |
| 19 | + "issues": "https://github.com/PHPJuice/slopeone/issues", |
| 20 | + "source": "https://github.com/PHPJuice/slopeone" |
| 21 | + }, |
| 22 | + "require": { |
| 23 | + "php": ">=7.2" |
| 24 | + }, |
| 25 | + "autoload": { |
| 26 | + "psr-4": { |
| 27 | + "PHPJuice\\Slopeone\\": "src" |
| 28 | + } |
| 29 | + }, |
| 30 | + "autoload-dev": { |
| 31 | + "psr-4": { |
| 32 | + "PHPJuice\\Slopeone\\Tests\\": "test" |
| 33 | + } |
| 34 | + }, |
| 35 | + "scripts": { |
| 36 | + "test": "./vendor/bin/phpunit --colors=always --configuration phpunit.xml.dist", |
| 37 | + "fix-cs": [ |
| 38 | + "php-cs-fixer fix src --rules=@Symfony,@PSR2", |
| 39 | + "php-cs-fixer fix tests --rules=@Symfony,@PSR2" |
| 40 | + ], |
| 41 | + "analyse": "vendor/bin/phpstan analyse src tests" |
| 42 | + }, |
| 43 | + "minimum-stability": "stable", |
| 44 | + "require-dev": { |
| 45 | + "phpunit/phpunit": "^5.7 || ^6.5", |
| 46 | + "phpstan/phpstan": "^0.12.28", |
| 47 | + "squizlabs/php_codesniffer": "*" |
| 48 | + } |
35 | 49 | } |
0 commit comments