-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
71 lines (71 loc) · 2.11 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
62
63
64
65
66
67
68
69
70
71
{
"name": "serendipity_hq/component-value-objects",
"description": "A set of value objects to manage simple and composite values",
"type": "library",
"license": "MIT",
"keywords": ["value objects"],
"homepage": "https://github.com/Aerendir/component-value-objects",
"authors": [
{
"name": "Adamo Aerendir Crespi",
"email": "aerendir@serendipityhq.com"
}
],
"require": {
"php": "^7.4|^8.0",
"darsyn/ip": "^4 || ^5",
"egulias/email-validator": "^2.1.10 || ^3.0.0 || ^4.0.0",
"giggsey/libphonenumber-for-php": "^8.8",
"laminas/laminas-uri": "^2.6.2",
"moneyphp/money": "^3.3|^4.0",
"thecodingmachine/safe": "^1.3|^2.0"
},
"require-dev": {
"ext-ast": "*",
"ext-bcmath": "*",
"bamarni/composer-bin-plugin": "^1.4",
"dg/bypass-finals": "^1.1",
"doctrine/dbal": "^2.5 | ^3.0",
"doctrine/orm": "^2.5",
"phpstan/phpstan": "1.12.8",
"phpstan/phpstan-phpunit": "1.4.0",
"rector/rector": "1.2.10",
"roave/security-advisories": "dev-master",
"serendipity_hq/rector-config": "^1.0",
"symfony/form": "^4.4|^5.4|^6.0",
"symfony/var-dumper": "^4.4|^5.4|^6.0",
"thecodingmachine/phpstan-safe-rule": "1.2.0",
"twig/intl-extra": "^2.12|^3.0"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"composer/package-versions-deprecated": true
}
},
"autoload": {
"psr-4": {
"SerendipityHQ\\Component\\ValueObjects\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SerendipityHQ\\Component\\ValueObjects\\Tests\\": "tests"
}
},
"scripts": {
"bin": "echo 'bin not installed'",
"post-install-cmd": [
"@composer bin all install --ansi"
],
"post-update-cmd": [
"@composer bin all update --ansi"
]
},
"extra": {
"bamarni-bin": {
"bin-links": false
}
}
}