forked from Ehyiah/MappingBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
61 lines (61 loc) · 1.64 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
{
"type": "symfony-bundle",
"name": "ehyiah/mapping-bundle",
"description": "Symfony Bundle to easily map Objects into each other",
"keywords": [
"symfony",
"mapping"
],
"license": "MIT",
"minimum-stability": "stable",
"prefer-stable": true,
"authors": [
{
"name": "Matthieu Gostiaux",
"role": "Author",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"doctrine/orm": "^2.10",
"symfony/property-access": "^6.1|^7.0",
"symfony/monolog-bundle": "^3.1",
"symfony/yaml": "^6.1|^7.0"
},
"require-dev": {
"symfony/console": "^7.0|^6.1",
"symfony/framework-bundle": "^7.0|^6.1",
"friendsofphp/php-cs-fixer": "^3.48",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-symfony": "^1.3",
"phpstan/extension-installer": "^1.3",
"phpunit/phpunit": "^9.6",
"symfony/phpunit-bridge": "^7.0",
"dg/bypass-finals": "^1.5"
},
"autoload": {
"psr-4": {
"Ehyiah\\MappingBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ehyiah\\MappingBundle\\Tests\\": "tests/"
}
},
"scripts": {
"phpcsfixer": "./vendor/bin/php-cs-fixer fix",
"phpcsfixer-lint": "./vendor/bin/php-cs-fixer fix --dry-run --diff",
"phpstan": "./vendor/bin/phpstan --memory-limit=1G analyse",
"ci": [
"@phpcsfixer-lint",
"@phpstan"
]
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}