-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.37 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
{
"name": "rushlow-development/serialize-type-bundle",
"description": "WIP - Unstable - serialize value objects in Doctrine",
"license": "Apache-2.0",
"type": "symfony-bundle",
"autoload": {
"psr-4": {
"RD\\SerializeTypeBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RD\\SerializeTypeBundle\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Jesse Rushlow",
"email": "[email protected]"
}
],
"require": {
"php": "^8.3",
"ext-json": "*",
"doctrine/doctrine-bundle": "^2.11",
"doctrine/dbal": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"symfony/framework-bundle": "^7.0",
"doctrine/orm": "^3.0"
},
"scripts": {
"tools:upgrade": {
"tools:upgrade:php-cs-fixer": "composer upgrade -d tools/php-cs-fixer",
"tools:upgrade:phpstan": "composer upgrade -d tools/phpstan",
"tools:upgrade:rector": "composer upgrade -d tools/rector"
},
"tools:run": {
"tools:run:rector": "tools/rector/vendor/bin/rector process --clear-cache",
"tools:run:php-cs-fixer": "tools/php-cs-fixer/vendor/bin/php-cs-fixer fix",
"tools:run:phpstan": "tools/phpstan/vendor/bin/phpstan --memory-limit=1G"
}
}
}