forked from contao/to.contao.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.02 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
{
"name": "contao/to.contao.org",
"description": "Shortlink service for the Contao Open Source CMS universe",
"license": "MIT",
"type": "project",
"authors": [
{
"name": "Yanick Witschi",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"symfony/console": "^7.0",
"symfony/filesystem": "^7.0",
"symfony/http-foundation": "^7.0",
"symfony/routing": "^7.0",
"symfony/yaml": "^7.0"
},
"require-dev": {
"contao/easy-coding-standard": "^6.12",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Contao\\ToContaoOrg\\": "src",
"Contao\\ToContaoOrg\\Test\\": "tests"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"csfix": "@php vendor/bin/ecs check bin public src tests --fix",
"tests": "vendor/bin/phpunit"
}
}