-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
56 lines (56 loc) · 1.55 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
{
"name": "ibexa/ci-scripts",
"description": "CI scripts for Ibexa DXP",
"type": "library",
"license": "GPL-2.0-only",
"minimum-stability": "stable",
"require": {
"php": "^7.3 || ^8.0",
"ext-json": "*",
"symfony/console": "^5.2",
"symfony/serializer": "^5.2",
"symfony/property-access": "^5.2",
"czproject/git-php": "^4.0.3",
"knplabs/github-api": "^3.0",
"php-http/guzzle6-adapter": "^2.0",
"guzzlehttp/guzzle": "^6.5",
"symfony/filesystem": "^5.0",
"http-interop/http-factory-guzzle": "^1.0"
},
"autoload": {
"psr-4": {
"Ibexa\\ContiniousIntegrationScripts\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ibexa\\Tests\\ContiniousIntegrationScripts\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-main": "0.2.x-dev"
}
},
"bin": [
"bin/ci"
],
"require-dev": {
"ibexa/code-style": "^1.0",
"phpstan/phpstan": "^1.8",
"phpunit/phpunit": "^9.5",
"mikey179/vfsstream": "^1.6"
},
"scripts": {
"phpstan": "phpstan analyse -c phpstan.neon",
"phpstan-baseline": "phpstan analyse -c phpstan.neon --generate-baseline",
"fix-cs": "php-cs-fixer fix --config=.php-cs-fixer.php -v --show-progress=dots",
"check-cs": "@fix-cs --dry-run",
"test": "phpunit -c phpunit.xml"
},
"config": {
"allow-plugins": {
"php-http/discovery": false
}
}
}