forked from phanan/poddle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 1.22 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
{
"name": "phanan/poddle",
"description": "Parse podcast feeds with PHP following PSP-1 Podcast RSS Standard",
"authors": [
{
"name": "Phan An",
"email": "[email protected]"
}
],
"keywords": [
"podcast",
"xml",
"rss",
"feed",
"parser",
"psp-1"
],
"license": "MIT",
"type": "library",
"require": {
"php": ">=8.1",
"saloonphp/xml-wrangler": "^1.2",
"illuminate/collections": "^10.48",
"illuminate/http": "^10.48",
"illuminate/support": "^10.48",
"guzzlehttp/guzzle": "^7.8",
"psr/http-client": "^1.0"
},
"require-dev": {
"phpunit/phpunit": ">=10.5",
"laravel/pint": "^1.15",
"larastan/larastan": "^2.9",
"orchestra/testbench": "*",
"laravel/tinker": "^2.9",
"mockery/mockery": "^1.6"
},
"scripts": {
"test": "phpunit tests",
"cs": "pint --test",
"cs:fix": "pint",
"analyze": "phpstan analyse"
},
"post-install-cmd": [
"composer dump-autoload"
],
"autoload": {
"psr-4": {
"PhanAn\\Poddle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"optimize-autoloader": true
},
"minimum-stability": "stable"
}