-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
51 lines (51 loc) · 1.34 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
{
"name": "t3g/symfony-usercentrics-bundle",
"description": "Integration of usercentrics.com for Symfony",
"type": "symfony-bundle",
"license": "MIT",
"minimum-stability": "stable",
"config": {
"bin-dir": "bin/",
"sort-packages": true,
"optimize-autoloader": true
},
"require": {
"php": "^8.0",
"symfony/dependency-injection": "^5.4 || ^6.4",
"symfony/twig-bundle": "^5.4 || ^6.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"overtrue/phplint": "^3.0 || ^4.0 || ^5.0",
"symfony/phpunit-bridge": "^5.4 || ^6.4"
},
"scripts": {
"t3g:test:php:functional": [
"simple-phpunit -c phpunit.xml.dist --testsuite \"Functional Test Suite\""
],
"t3g:cgl": [
"php-cs-fixer fix -v --dry-run"
],
"t3g:cgl:fix": [
"php-cs-fixer fix"
],
"t3g:test:php:lint": [
"phplint"
],
"t3g:test": [
"@t3g:cgl",
"@t3g:test:php:lint",
"@t3g:test:php:functional"
]
},
"autoload": {
"psr-4": {
"T3G\\Bundle\\UsercentricsBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"T3G\\Bundle\\UsercentricsBundle\\Tests\\": "tests/"
}
}
}