-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
131 lines (131 loc) · 3.87 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
121
122
123
124
125
126
127
128
129
130
131
{
"name": "dharple/todo",
"description": "Old TODO Software",
"type": "project",
"license": "BSD-2-Clause",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.1.2",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-json": "*",
"doctrine/annotations": "^1.14.3",
"doctrine/cache": "^1.13",
"doctrine/collections": "^1.8",
"doctrine/dbal": "^2.13.9",
"doctrine/doctrine-bundle": "^2.7.2",
"doctrine/doctrine-migrations-bundle": "^3.3.1",
"doctrine/orm": "^2.19.7",
"nesbot/carbon": "^2.72.5",
"phpdocumentor/reflection-docblock": "^5.4.1",
"psr/log": "^1.1.4",
"symfony/asset": "^5.4.40",
"symfony/console": "^5.4.43",
"symfony/dotenv": "^5.4.42",
"symfony/expression-language": "^5.4.43",
"symfony/flex": "^1.21.7",
"symfony/form": "^5.4.43",
"symfony/framework-bundle": "^5.4.42",
"symfony/http-client": "^5.4.43",
"symfony/intl": "^5.4.40",
"symfony/mailer": "^5.4.41",
"symfony/mime": "^5.4.43",
"symfony/monolog-bundle": "^3.10",
"symfony/notifier": "^5.4.41",
"symfony/process": "^5.4.40",
"symfony/property-access": "^5.4.43",
"symfony/property-info": "^5.4.42",
"symfony/proxy-manager-bridge": "^5.4.40",
"symfony/security-bundle": "^5.4.43",
"symfony/serializer": "^5.4.43",
"symfony/string": "^5.4.43",
"symfony/translation": "^5.4.42",
"symfony/twig-bundle": "^5.4.40",
"symfony/validator": "^5.4.43",
"symfony/var-exporter": "^5.4.40",
"symfony/web-link": "^5.4.40",
"symfony/yaml": "^5.4.43",
"twig/extra-bundle": "^2.12|^3.12.0",
"twig/twig": "^2.12|^3.12.0"
},
"suggest": {
"ext-mysqli": "*",
"ext-sqlite3": "*"
},
"require-dev": {
"outsanity/phpcs": ">=0.4.0",
"phpunit/phpunit": "^9.6.20",
"rector/rector": "^0.16.0",
"symfony/browser-kit": "^5.4.40",
"symfony/css-selector": "^5.4.40",
"symfony/debug-bundle": "^5.4.40",
"symfony/maker-bundle": "^1.50",
"symfony/stopwatch": "^5.4.40",
"symfony/var-dumper": "^5.4.43",
"symfony/web-profiler-bundle": "^5.4.43"
},
"config": {
"optimize-autoloader": true,
"platform": {
"php": "8.1.2"
},
"preferred-install": {
"*": "dist"
},
"process-timeout": 0,
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"symfony/flex": true
},
"audit": {
"abandoned": "fail"
}
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php72": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"go-old": [
"php bin/console cache:clear",
"php -S localhost:8000 -t public/ -d auto_prepend_file=../include/common.php"
],
"phpcbf": "phpcbf",
"phpcs": "phpcs",
"phpstan": "phpstan analyse",
"test": "phpunit"
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "5.4.*"
}
}
}