-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
48 lines (48 loc) · 1.04 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
{
"name": "cultuurnet/search-v3",
"description": "Cultuurnet search service for version 3",
"type": "library",
"version": "2.0.0",
"license": "Apache-2.0",
"authors": [
{
"name": "publiq vzw",
"email": "info@publiq.be"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"CultuurNet\\SearchV3\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"CultuurNet\\SearchV3\\": "test"
}
},
"require": {
"php": "^8",
"guzzlehttp/guzzle": "^6.5.8|^7.4.5",
"jms/serializer": "3.24.0",
"simple-bus/jms-serializer-bridge": "^6.3.1"
},
"require-dev": {
"phpunit/phpunit": "^10.4.1",
"publiq/php-cs-fixer-config": "^2.0",
"phpstan/phpstan": "^1.0"
},
"scripts": {
"test": "vendor/bin/phpunit",
"phpstan": "vendor/bin/phpstan analyse",
"cs": "php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "php-cs-fixer fix -v --diff",
"ci": [
"composer cs",
"composer phpstan",
"composer test"
]
},
"config": {}
}