-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (62 loc) · 1.61 KB
/
composer.json
File metadata and controls
63 lines (62 loc) · 1.61 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
{
"name": "inachisphp/timeline",
"type": "library",
"description": "A timeline style view for content output by inachis",
"keywords": [],
"homepage": "https://github.com/inachisphp/timeline",
"license": "MIT",
"authors": [
{
"name": "David G. Paul",
"homepage": "https://davidgpaul.co.uk"
}
],
"require": {
"php": ">=8.1",
"doctrine/dbal": "^3",
"doctrine/doctrine-bundle": "^2.12",
"doctrine/doctrine-migrations-bundle": "^3.3",
"doctrine/orm": "^3.2",
"symfony/framework-bundle": "^7.4"
},
"require-dev": {
"doctrine/doctrine-fixtures-bundle": "^3.4|3.5.x-dev",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-phpunit": "^1.2",
"phpstan/phpstan-strict-rules": "^1.4",
"phpstan/phpstan-symfony": "^1.2",
"psr/log": "^1.0"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"symfony/flex": true,
"phpstan/extension-installer": true
}
},
"suggest": {
"inachisphp/inachis": ""
},
"autoload": {
"psr-4": {
"Inachis\\Timeline\\": "src/"
}
},
"extra": {
"symfony": {
"bundle-class": "Inachis\\Timeline\\InachisTimeline"
}
},
"autoload-dev": {
"psr-4": {
"Inachis\\Component\\Timeline\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-package-install": [
]
}
}