-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1.08 KB
/
composer.json
File metadata and controls
39 lines (39 loc) · 1.08 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
{
"name": "myonlinestore/api-tools",
"description": "Common API Tools",
"type": "library",
"license": "MIT",
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4": {
"MyOnlineStore\\ApiTools\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MyOnlineStore\\ApiTools\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.0",
"cuyz/valinor": "^1.5",
"sensio/framework-extra-bundle": "^6.2",
"symfony/event-dispatcher": "^5.4 || ^6.0",
"symfony/http-kernel": "^5.4 || ^6.0"
},
"require-dev": {
"myonlinestore/coding-standard": "^3.1",
"myonlinestore/php-devtools": "^0.5",
"phpunit/phpunit": "^9.5",
"psalm/plugin-phpunit": "^0.19",
"psalm/plugin-symfony": "^5.0",
"roave/infection-static-analysis-plugin": "^1.18",
"vimeo/psalm": "^5.0"
}
}