-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.6 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.6 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
{
"name": "emileperron/tinymce-bundle",
"description": "A Symfony bundle to add TinyMCE in your apps and forms.",
"type": "symfony-bundle",
"require": {
"php": "^8.1",
"symfony/asset": "^4.0|^5.0|^6.0|^7.0|^8.0",
"symfony/http-foundation": "^4.0|^5.0|^6.0|^7.0|^8.0",
"symfony/http-kernel": "^4.0|^5.0|^6.0|^7.0|^8.0",
"symfony/form": "^4.0|^5.0|^6.0|^7.0|^8.0",
"symfony/dependency-injection": "^4.0|^5.0|^6.0|^7.0|^8.0",
"symfony/routing": "^4.0|^5.0|^6.0|^7.0|^8.0",
"twig/twig": "^3.3"
},
"scripts": {
"php-cs-fixer": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php -vvv --dry-run --using-cache=no",
"php-cs-fixer:fix": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php -vvv --using-cache=no",
"phpmd": "vendor/phpmd/phpmd/src/bin/phpmd src text .phpmd.xml",
"phpstan": "vendor/bin/phpstan analyse -n",
"test": "npx playwright test"
},
"autoload": {
"psr-4": {
"EmilePerron\\TinymceBundle\\": "src/"
}
},
"authors": [
{
"name": "Émile Perron",
"email": "contact@emileperron.com"
}
],
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.74",
"vincentlanglet/twig-cs-fixer": "^2.12.1",
"phpmd/phpmd": "^2.15",
"phpstan/phpstan": "^1.12.23",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan-symfony": "^1.4.15",
"phpunit/phpunit": "^9.16|^10.5|^11.5.8"
}
}