-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.65 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.65 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
{
"name": "ecphp/php-directive-bundle",
"description": "Let users customize the PHP directives through a custom ini file.",
"license": "BSD-3-Clause",
"type": "symfony-bundle",
"keywords": [],
"homepage": "http://github.com/ecphp/php-directive-bundle",
"require": {
"php": ">= 7.4",
"symfony/framework-bundle": "^5"
},
"require-dev": {
"behat/behat": "^3.8",
"doctrine/annotations": "^1.13",
"ecphp/php-conventions": "^1",
"friends-of-behat/mink": "^1.9",
"friends-of-behat/mink-browserkit-driver": "^1.5",
"friends-of-behat/mink-extension": "^2.5",
"friends-of-behat/symfony-extension": "^2.2",
"friends-of-phpspec/phpspec-code-coverage": "^6.1",
"infection/infection": "^0.24",
"infection/phpspec-adapter": "^0.1.1",
"phpspec/phpspec": "^7",
"psr/log": "^1.1",
"soyuka/contexts": "^3.3",
"symfony/http-kernel": "^5.2.4",
"symfony/test-pack": "^1.0"
},
"autoload": {
"psr-4": {
"EcPhp\\PhpDirectiveBundle\\": "src/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"phpro/grumphp": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"changelog-unreleased": "auto-changelog -c .auto-changelog -u",
"changelog-version": "auto-changelog -c .auto-changelog -v",
"grumphp": "./vendor/bin/grumphp run",
"phpspec": "./vendor/bin/phpspec run"
}
}