forked from Stogon/unleash-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.71 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.71 KB
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
{
"name": "stogon/unleash-bundle",
"description": "Unleash SDK implementation for Symfony framework",
"keywords": ["symfony", "bundle", "unleash", "feature-flags"],
"type": "symfony-bundle",
"require": {
"php": "^7.4|^8.0",
"symfony/cache": "^5.2",
"symfony/config": "^5.2",
"symfony/contracts": "^v2.3",
"symfony/dependency-injection": "^5.2",
"symfony/event-dispatcher": "^5.2",
"symfony/http-client": "^5.2",
"symfony/http-kernel": "^5.2",
"symfony/security-core": "^5.2",
"twig/twig": "^2.12|^3.0"
},
"require-dev": {
"symfony/var-dumper": "^5.2",
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^0.12.65",
"friendsofphp/php-cs-fixer": "^2.17"
},
"scripts": {
"cs-fixer": "php-cs-fixer fix --config=.php_cs.dist --diff --dry-run",
"format-code": "php-cs-fixer fix --config=.php_cs.dist",
"stan": "phpstan analyse --no-progress",
"test": "composer unit-test && composer stan && composer cs-fixer",
"unit-test": "phpunit --coverage-text --colors=never"
},
"license": "MIT",
"authors": [
{
"name": "Joël Sunier",
"email": "[email protected]"
}
],
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"Stogon\\UnleashBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Stogon\\UnleashBundle\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"minimum-stability": "stable"
}