-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.92 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
{
"name": "slashid/symfony",
"description": "SlashID integration bundle for Symfony.",
"type": "library",
"autoload": {
"psr-4": {
"SlashId\\Symfony\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SlashId\\Development\\Symfony\\": "scripts/src",
"SlashId\\Test\\Symfony\\": "tests/unit/src"
}
},
"authors": [
{
"name": "José San Martin",
"email": "jose@josesanmartin.net"
}
],
"require": {
"php": "^8.1",
"slashid/php": "1.0.2",
"symfony/yaml": "^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.54",
"phpunit/phpunit": "^11.1",
"phpstan/phpstan": "^1.10",
"symfony/security-core": "^7",
"symfony/http-kernel": "^7",
"twig/twig": "^3",
"symfony/dependency-injection": "^7",
"symfony/security-http": "^7",
"symfony/config": "^7",
"symfony/security-bundle": "^7",
"symfony/routing": "^7.0",
"symfony/translation": "^7.0",
"doctrine/orm": "^3.1"
},
"scripts": {
"test-cs": "vendor/bin/php-cs-fixer check --rules=@Symfony,@PER-CS2.0 .",
"test-cs-fix": "vendor/bin/php-cs-fixer fix --rules=@Symfony,@PER-CS2.0 .",
"test-phpstan": "vendor/bin/phpstan analyse src -l 9",
"test-phpunit": "vendor/bin/phpunit --display-warnings --fail-on-warning --fail-on-risky --fail-on-notice tests/unit/",
"test-phpunit-coverage": "vendor/bin/phpunit --display-warnings --fail-on-warning --fail-on-risky --fail-on-notice --coverage-html tests/coverage --coverage-filter src/ tests/unit/",
"test": [
"composer test-cs",
"composer test-phpstan",
"composer test-phpunit-coverage"
],
"development-generate-translation": "SlashId\\Development\\Symfony\\TranslationYamlGenerator::generate"
}
}