forked from iaasen/matrikkel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
72 lines (72 loc) · 1.8 KB
/
composer.json
File metadata and controls
72 lines (72 loc) · 1.8 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "iaasen/matrikkel",
"description": "Client to access MatrikkelAPI from Kartverket",
"type": "project",
"license": "GPL-3.0-or-later",
"prefer-stable": true,
"preferred-install": {
"iaasen/*": "source"
},
"require": {
"php": "^8.3",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-zip": "*",
"laminas/laminas-db": "*",
"laminas/laminas-soap": "*",
"symfony/console": "^7",
"symfony/dotenv": "^7",
"symfony/flex": "^2",
"symfony/framework-bundle": "^7",
"symfony/runtime": "^7",
"symfony/yaml": "^7"
},
"suggest": {
"ext-soap": "Matrikkel uses the PHP soap package",
"laminas/laminas-soap": "Matrikkel in api-mode requires soap",
"phpro/soap-client": "Useful to generate local entities based on wsdl"
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"symfony/flex": true,
"symfony/runtime": true
},
"sort-packages": true,
"audit": {
"abandoned": "ignore"
}
},
"autoload": {
"psr-4": {
"Iaasen\\Matrikkel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Iaasen\\MatrikkelApi\\Tests\\": "tests/"
}
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "7.*"
}
},
"repositories": []
}