-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (62 loc) · 1.62 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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "thruster/mikro-kernel",
"type": "library",
"description": "Thruster MikroKernel Component",
"keywords": [
"mikro-kernel",
"thruster"
],
"homepage": "https://thruster.io",
"license": "MIT",
"authors": [
{
"name": "Aurimas Niekis",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3",
"ext-curl": "*",
"psr/http-server-handler": "^1.0",
"symfony/config": "^4.2",
"symfony/debug": "^4.2",
"symfony/dependency-injection": "^4.2",
"symfony/expression-language": "^4.2",
"symfony/proxy-manager-bridge": "^4.2",
"thruster/http-factory": "^1.1",
"zendframework/zend-diactoros": "^2.1"
},
"require-dev": {
"phpunit/phpunit": "^8",
"friendsofphp/php-cs-fixer": "^2"
},
"autoload": {
"psr-4": {
"Thruster\\MikroKernel\\": "src"
},
"classmap": [
"src/"
]
},
"autoload-dev": {
"psr-4": {
"Thruster\\MikroKernel\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"test-coverage": "phpunit --coverage-html build/html/",
"check-style": "php-cs-fixer fix --dry-run --diff --diff-format udiff",
"fix-style": "php-cs-fixer fix",
"phpcs-ci": "phpcs --standard=psr2 src/",
"test-ci": "phpunit --coverage-text --coverage-clover=coverage.clover"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"sort-packages": true
}
}