-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
49 lines (49 loc) · 1.33 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
{
"name": "laminas/laminas-migration",
"description": "Migrate a Zend Framework project or third-party library to target Laminas/Expressive/Apigility",
"license": "BSD-3-Clause",
"config": {
"sort-packages": true,
"platform": {
"php": "8.0.99"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"php": "~8.0.0 || ~8.1.0 || ~8.2.0",
"ext-json": "*",
"composer/semver": "^1.4 || ^2.0 || ^3.0",
"laminas/laminas-zendframework-bridge": "^1.4.1",
"symfony/console": "^3.4.17 || ^4.0 || ^5.0 || ^6.0"
},
"require-dev": {
"laminas/laminas-coding-standard": "~2.5.0",
"phpunit/phpunit": "9.6.10",
"psalm/plugin-phpunit": "^0.18.0",
"roave/security-advisories": "dev-master",
"vimeo/psalm": "^5.0.0"
},
"autoload": {
"psr-4": {
"Laminas\\Migration\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LaminasTest\\Migration\\": "test/"
}
},
"extra": {
},
"bin": [
"bin/laminas-migration"
],
"scripts": {
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"static-analysis": "psalm --shepherd --stats",
"test": "phpunit"
}
}