-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
62 lines (62 loc) · 1.55 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
56
57
58
59
60
61
62
{
"name": "jwhulette/pipes",
"description": "An PHP ETL Processing Library",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Wes Hulette",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.1",
"league/pipeline": "^1.0",
"openspout/openspout": "^4.13.1",
"illuminate/support" : "^8.0|^9.0|^10.0",
"illuminate/database" : "^8.0|^9.0|^10.0",
"nesbot/carbon": "^2.66"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^v3.13.0",
"phpunit/phpunit": "^9.6.7",
"phpstan/phpstan": "^1.10.13",
"ramsey/uuid": "^4.7.3",
"orchestra/testbench": "^8.4",
"nunomaduro/larastan": "^2.5.1",
"nunomaduro/phpinsights": "^2.8"
},
"autoload": {
"psr-4": {
"Jwhulette\\Pipes\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"tf" : "./vendor/bin/phpunit --filter ",
"phpstan": "phpstan analyse --memory-limit 2G",
"ts": [
"composer phpstan",
"composer test"
]
},
"extra": {
"laravel": {
"providers": [
"Jwhulette\\Pipes\\PipesPackageServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}