-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.24 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.24 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
{
"name": "simpleid/simpleid-tool",
"description": "Utility for SimpleID",
"require": {
"php": "^7.3 || ^8.0",
"ext-hash": "*",
"symfony/console": "^5.0 || ^6.0 || ^7.0",
"symfony/process": " ^5.4 || ^6.0 || ^7.0",
"symfony/yaml": "^5.4 || ^6.0",
"symfony/finder": "^5.4 || ^6.0 || ^7.0"
},
"require-dev": {
"consolidation/robo": "^3.0 || ^4.0",
"ext-bz2": "*",
"ext-phar": "*",
"bamarni/composer-bin-plugin": "^1.8"
},
"bin": [
"bin/simpleid-tool"
],
"scripts": {
"phar": [ "@composer install", "@composer bin build install", "robo phar" ],
"update-copyright": [ "@composer install", "robo update_copyright" ]
},
"license": "GPL-2.0+",
"authors": [
{
"name": "Kelvin Mo",
"email": "kmo@users.sourceforge.net"
}
],
"autoload": {
"psr-4": { "SimpleIDTool\\": "src" }
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"target-directory": "vendor-bin",
"forward-command": false
}
}
}