-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
72 lines (72 loc) · 1.84 KB
/
Copy pathcomposer.json
File metadata and controls
72 lines (72 loc) · 1.84 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "jotaelesalinas/php-simple-mapreduce",
"type": "library",
"description": "A simple in-memory map/reduce engine for PHP iterables, without workers or configuration.",
"keywords": [
"php",
"mapreduce",
"map-reduce",
"aggregation",
"iterable",
"generator",
"pipeline",
"in-memory",
"data-processing",
"simple"
],
"homepage": "https://github.com/jotaelesalinas/php-simple-mapreduce",
"license": "MIT",
"authors": [
{
"name": "José Luis Salinas",
"email": "jotaelesalinas@example.com",
"homepage": "https://github.com/jotaelesalinas",
"role": "Developer"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.60",
"jotaelesalinas/php-data-streams": "dev-master",
"pestphp/pest": "^2.36",
"phpstan/phpstan": "^1.12"
},
"repositories": [
{
"type": "path",
"url": "../php-data-streams",
"options": {
"symlink": true
}
}
],
"autoload": {
"psr-4": {
"JLSalinas\\SimpleMapReduce\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JLSalinas\\SimpleMapReduce\\Tests\\": "tests/"
}
},
"scripts": {
"test": "pest",
"analyse": "phpstan analyse --no-progress",
"format": "php-cs-fixer fix --config=.php-cs-fixer.php --dry-run --diff",
"format:fix": "php-cs-fixer fix --config=.php-cs-fixer.php",
"check": [
"@analyse",
"@test",
"@format"
]
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
},
"sort-packages": true
}
}