-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.59 KB
/
Copy pathcomposer.json
File metadata and controls
51 lines (51 loc) · 1.59 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
48
49
50
51
{
"name": "leapt/slug-type-bundle",
"type": "symfony-bundle",
"description": "Leapt SlugType bundle makes a form field dynamically generate the slug of another text field.",
"keywords": ["symfony-ux"],
"homepage": "https://github.com/leapt/slug-type-bundle",
"license": "MIT",
"authors": [
{
"name": "Jonathan Scheiber",
"homepage": "https://github.com/jmsche"
}
],
"require": {
"php": "^8.2",
"symfony/form": "^6.4 || ^7.0 || ^8.0",
"symfony/http-kernel": "^6.4 || ^7.0 || ^8.0",
"symfony/stimulus-bundle": "^2.9 || ^3.0",
"symfony/translation": "^6.4 || ^7.0 || ^8.0"
},
"require-dev": {
"phpstan/phpstan": "^2.1.55",
"phpstan/phpstan-deprecation-rules": "^2.0.4",
"phpunit/phpunit": "^11.5.55",
"symfony/asset-mapper": "^6.4 || ^7.0 || ^8.0",
"symfony/framework-bundle": "^6.4 || ^7.0 || ^8.0",
"symfony/twig-bundle": "^6.4 || ^7.0 || ^8.0",
"symplify/easy-coding-standard": "^13.1.3"
},
"scripts": {
"ci": [
"@cs:dry",
"@phpstan",
"@phpunit"
],
"cs:dry": "vendor/bin/ecs",
"cs:fix": "vendor/bin/ecs --fix",
"phpstan": "vendor/bin/phpstan analyse --ansi",
"phpunit": "vendor/bin/phpunit --coverage-html=var/html-coverage --colors=auto"
},
"autoload": {
"psr-4": {
"Leapt\\SlugTypeBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Leapt\\SlugTypeBundle\\Tests\\": "tests/"
}
}
}