-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.06 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
{
"name": "matchory/data-pipe",
"description": "A data processing pipeline framework",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Matchory\\DataPipe\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Matchory\\DataPipe\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Moritz Friedrich",
"email": "moritz@matchory.com"
}
],
"require": {
"php": ">8",
"dusank/knapsack": "^10.0",
"marcj/topsort": "^2.0",
"phpunit/phpunit": "^9.5",
"psr/event-dispatcher": "^1.0",
"symfony/event-dispatcher": "^5.3"
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "phpunit",
"check": "psalm --config=./psalm.xml"
},
"require-dev": {
"illuminate/contracts": "^8.48",
"illuminate/support": "^8.48",
"jetbrains/phpstorm-attributes": "^1.0",
"symfony/framework-bundle": "^5.3",
"vimeo/psalm": "^4.7"
}
}