-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
76 lines (76 loc) · 2.4 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
72
73
74
75
76
{
"name": "serendipity_hq/bundle-features",
"description": "Manage features and plans in your Symfony app.",
"type": "symfony-bundle",
"keywords": ["pricing", "plans", "paid", "features gating"],
"homepage": "https://github.com/Aerendir/bundle-features",
"license": "MIT",
"authors": [
{
"name": "Adamo Aerendir Crespi",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"ext-iconv": "*",
"ext-intl": "*",
"ext-json": "*",
"doctrine/common": "^2.5 || ^3.0",
"doctrine/doctrine-bundle": "^1.8 || ^2.0",
"doctrine/orm": "^2.5 || ^3.0",
"serendipity_hq/component-array-writer": "^5.1 || ^6.0",
"serendipity_hq/component-value-objects": "^7.1",
"symfony/form": "^4.4|^5.4|^6.0|^7.0",
"symfony/framework-bundle": "^4.4|^5.4|^6.0|^7.0",
"symfony/options-resolver": "^4.4|^5.4|^6.0",
"symfony/routing": "^4.4|^5.4|^6.0|^7.0",
"symfony/translation": "^4.4|^5.4|^6.0|^7.0",
"thecodingmachine/safe": "^1.0|^2.0|^3.0"
},
"require-dev": {
"ext-ast": "*",
"bamarni/composer-bin-plugin": "^1.4",
"phpstan/phpstan": "^1.5.6",
"phpstan/phpstan-doctrine": "1.5.3",
"phpstan/phpstan-phpunit": "1.4.0",
"phpstan/phpstan-symfony": "1.4.10",
"rector/rector": "1.2.6",
"roave/security-advisories": "dev-master",
"serendipity_hq/component-text-matrix": "^3.0",
"serendipity_hq/rector-config": "^1.0",
"symfony/var-dumper": "^4.4|^5.4|^6.0|^7.0",
"thecodingmachine/phpstan-safe-rule": "1.2.0"
},
"autoload": {
"psr-4": {
"SerendipityHQ\\Bundle\\FeaturesBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SerendipityHQ\\Bundle\\FeaturesBundle\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"bamarni/composer-bin-plugin": true
}
},
"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
}
}
}