generated from strangebuzz/MicroSymfony
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
120 lines (120 loc) · 3.42 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "tacman/micro-calendar",
"description": "An application that uses javascript libraries using AssetMapper instead of webpack",
"license": "MIT",
"type": "symfony-application",
"keywords": [
"micro-framework",
"php",
"poc",
"rad",
"symfony",
"web-application"
],
"homepage": "https://tacman.github.io/micro-calendar",
"require": {
"php": ">=8.1",
"ext-ctype": "*",
"ext-dom": "*",
"ext-iconv": "*",
"ext-libxml": "*",
"ext-simplexml": "*",
"ext-xml": "*",
"doctrine/doctrine-bundle": "^2.10",
"doctrine/doctrine-migrations-bundle": "^3.2",
"doctrine/orm": "^2.16",
"league/commonmark": "^2.3",
"stenope/stenope": "^0.8.0",
"symfony/asset": "^6.4",
"symfony/asset-mapper": "^6.4",
"symfony/console": "^6.4",
"symfony/dotenv": "^6.4",
"symfony/flex": "^2",
"symfony/form": "^6.4",
"symfony/framework-bundle": "^6.4",
"symfony/intl": "^6.4",
"symfony/monolog-bundle": "^3.8",
"symfony/runtime": "^6.4",
"symfony/stimulus-bundle": "2.x-dev",
"symfony/twig-bundle": "^6.4",
"symfony/ux-twig-component": "2.x-dev",
"symfony/validator": "^6.4",
"symfony/web-link": "^6.4",
"symfony/yaml": "^6.4",
"tattali/calendar-bundle": "dev-master",
"twig/extra-bundle": "^3.0",
"twig/markdown-extra": "^3.5",
"twig/twig": "^3.7"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.14",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan-symfony": "^1.2",
"phpunit/phpunit": "^9.0",
"symfony/browser-kit": "^6.4",
"symfony/css-selector": "^6.4",
"symfony/debug-bundle": "^6.4",
"symfony/maker-bundle": "^1.51",
"symfony/phpunit-bridge": "^6.4",
"symfony/stopwatch": "^6.4",
"symfony/web-profiler-bundle": "^6.4"
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php74": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*"
},
"conflict": {
"symfony/symfony": "*"
},
"minimum-stability": "dev",
"prefer-stable": false,
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"symfony/flex": true,
"symfony/runtime": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"extra": {
"symfony": {
"allow-contrib": true,
"require": "^6.4"
}
},
"scripts": {
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"app:test": [
"vendor/bin/simple-phpunit"
],
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd",
"importmap:install": "symfony-cmd"
}
},
"scripts-descriptions": {
"app:test": "Run all PHPUnit tests"
}
}