-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
42 lines (42 loc) · 1.14 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
{
"name": "myonlinestore/php-devtools",
"description": "PHP Dev Tools",
"minimum-stability": "stable",
"license": "MIT",
"autoload": {
"psr-4": {
"MyOnlineStore\\DevTools\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MyOnlineStore\\DevTools\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true
}
},
"require": {
"php": "^8.1",
"composer/semver": "^3.3",
"symfony/console": "^5.4 || ^6.0",
"symfony/process": "^5.4 || ^6.0"
},
"require-dev": {
"myonlinestore/coding-standard": "^4.0",
"doctrine/coding-standard": "10.0.x-dev",
"phpunit/phpunit": "^9.5",
"roave/infection-static-analysis-plugin": "^1.19",
"roave/security-advisories": "dev-latest",
"vimeo/psalm": "^5.0",
"phpstan/phpstan": "^1.7",
"phpstan/phpstan-phpunit": "^1.1",
"phparkitect/phparkitect": "^0.2.21"
},
"bin": [
"bin/devtools"
]
}