-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathcomposer.json
More file actions
77 lines (77 loc) · 1.93 KB
/
composer.json
File metadata and controls
77 lines (77 loc) · 1.93 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
73
74
75
76
77
{
"name": "rumenx/php-feed",
"description": "Framework-agnostic PHP Feed generator for Laravel, Symfony, and more.",
"homepage": "https://github.com/RumenDamyanov/php-feed",
"keywords": ["php", "feed", "rss", "atom", "laravel", "symfony", "generator"],
"license": "MIT",
"authors": [
{
"name": "Rumen Damyanov",
"email": "contact@rumenx.com",
"role": "Developer",
"homepage": "https://rumenx.com"
}
],
"support": {
"issues": "https://github.com/RumenDamyanov/php-feed/issues",
"source": "https://github.com/RumenDamyanov/php-feed",
"wiki": "https://github.com/RumenDamyanov/php-feed/wiki"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/RumenDamyanov"
}
],
"require": {
"php": "^8.2"
},
"require-dev": {
"laravel/framework": "^11.0",
"symfony/http-foundation": "^7.0",
"phpunit/phpunit": "^11.0",
"pestphp/pest": "^3.8",
"orchestra/testbench": "^9.14",
"symfony/cache": "^7.3",
"symfony/dependency-injection": "^7.3",
"symfony/templating": "^6.4",
"phpstan/phpstan": "^2.1",
"squizlabs/php_codesniffer": "^4.0"
},
"autoload": {
"psr-4": {
"Rumenx\\Feed\\": "src/Rumenx/Feed/"
}
},
"suggest": {
"laravel/framework": "For Laravel integration",
"symfony/http-foundation": "For Symfony integration"
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"test": "pest",
"test:coverage": "pest --coverage",
"test:coverage-html": "pest --coverage-html",
"test:watch": "pest --watch",
"analyse": "phpstan analyse --level=6 -c phpstan.neon",
"format": "pint",
"style": "phpcs --standard=PSR12 src/",
"style:fix": "phpcbf --standard=PSR12 src/",
"check": [
"@test",
"@analyse",
"@style"
],
"ci": [
"@test:coverage",
"@analyse",
"@style"
]
}
}