generated from BusterNeece/library-skeleton
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.29 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
{
"name": "azuracast/doctrine-entity-normalizer",
"description": "An implementation of the Symfony Serializer with custom support for Doctrine 3 ORM entities.",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Buster Neece",
"email": "[email protected]",
"homepage": "https://busterneece.com/"
}
],
"scripts": {
"test": [
"@composer install --prefer-dist --no-progress",
"@phplint",
"@phpstan"
],
"phplint": "parallel-lint . --exclude vendor",
"phpstan": "phpstan analyze"
},
"autoload": {
"psr-4": {
"Azura\\Normalizer\\": "src"
}
},
"require": {
"php": ">=8.2",
"doctrine/collections": ">1",
"doctrine/inflector": "^2",
"doctrine/orm": "^3",
"doctrine/persistence": "^2|^3",
"symfony/serializer": "^7"
},
"require-dev": {
"php-parallel-lint/php-console-highlighter": "^1",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/phpstan": "^1",
"roave/security-advisories": "dev-master"
},
"config": {
"preferred-install": "dist",
"discard-changes": true,
"sort-packages": true
}
}