forked from Crell/PlanedoBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
79 lines (79 loc) · 2.38 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "crell/planedo-bundle",
"description": "Feed aggregator bundle for Symfony 6 and later.",
"type": "symfony-bundle",
"license": "AGPL-3.0-or-later",
"authors": [
{
"name": "Larry Garfield",
"email": "[email protected]",
"homepage": "https://www.garfieldtech.com",
"role": "Lead Developer"
}
],
"require": {
"php": "~8.1",
"php/ext-intl": "*",
"easycorp/easyadmin-bundle": "^4.0",
"laminas/laminas-feed": "^2.15",
"nyholm/psr7": "^1.4",
"psr/clock": "1.0.0",
"psr/http-client": "^1.0",
"symfony/form": "^5.4 || ^6.0",
"symfony/framework-bundle": "^5.4 || ^6.0",
"symfony/config": "^5.4 || ^6.0",
"symfony/dependency-injection": "^5.4 || ^6.0",
"symfony/http-client": "^5.4 || ^6.0",
"symfony/http-kernel": "^5.4 || ^6.0",
"symfony/messenger": "^5.4 || ^6.0",
"symfony/security-bundle": "^5.4 || ^6.0",
"symfony/twig-bundle": "^5.4 || ^6.0",
"symfony/yaml": "^5.4 || ^6.0",
"doctrine/doctrine-bundle": "^2.4",
"twig/twig": "^2.12|^3.0",
"symfony/password-hasher": "^5.4 || ^6.0",
"symfonycasts/reset-password-bundle": "^1.11",
"symfony/mailer": "^5.4 || ^6.0"
},
"require-dev": {
"dama/doctrine-test-bundle": "^6.7",
"doctrine/doctrine-fixtures-bundle": "^3.4",
"overtrue/phplint": "^4.1",
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": "^9.5",
"symfony/browser-kit": "^5.4 || ^6.0",
"symfony/css-selector": "^5.4 || ^6.0",
"symfony/phpunit-bridge": "^5.4 || ^6.0"
},
"autoload": {
"psr-4": {
"Crell\\Bundle\\Planedo\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Crell\\Bundle\\Planedo\\Tests\\TestApplication\\": "tests/TestApplication/src/",
"Crell\\Bundle\\Planedo\\Tests\\": "tests/"
}
},
"scripts": {
"test:php:unit": [
"simple-phpunit -c phpunit.xml.dist"
],
"test:php:lint": [
"phplint"
],
"test": [
"@test:php:lint",
"@test:php:unit"
]
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}