-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathcomposer.json
76 lines (76 loc) · 1.97 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
{
"name": "norberttech/aceeditor-bundle",
"type": "symfony-bundle",
"description": "Bundle that integrate excellent JavaScript ace editor into Symfony Form.",
"keywords": [
"ace",
"code",
"editor",
"symfony",
"form",
"bundle",
"javascript",
"symfony-ux"
],
"license": "MIT",
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
"twig/twig": "^2.0|^3.0",
"symfony/framework-bundle": "^5.4|^6.0|^7.0",
"symfony/form": "^5.4|^6.0|^7.0",
"symfony/twig-bridge": "^5.4|^6.0|^7.0",
"symfony/asset": "^5.4|^6.0|^7.0",
"symfony/expression-language": "^5.4|^6.0|^7.0"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8",
"phpunit/phpunit": "^11.5",
"symfony/asset-mapper": "6.4 || ^7.0",
"symfony/stimulus-bundle": "^2.16"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"autoload": {
"psr-4": { "AceEditorBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": {
"AceEditorBundle\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "5.0-dev"
},
"bamarni-bin": {
"bin-links": false,
"target-directory": "tools",
"forward-command": true
}
},
"scripts" : {
"build": [
"@check:lint",
"@check:static",
"@test"
],
"test": [
"phpunit"
],
"check:lint": [
"@cs:check"
],
"check:static": [
"@phpstan --memory-limit=128M"
],
"cs:check": "@php-cs-fixer fix --dry-run",
"cs:fix": "@php-cs-fixer fix",
"php-cs-fixer": "tools/php-cs-fixer/vendor/bin/php-cs-fixer",
"phpstan": "tools/phpstan/vendor/bin/phpstan"
}
}