forked from ICanBoogie/Common
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·45 lines (45 loc) · 877 Bytes
/
composer.json
File metadata and controls
executable file
·45 lines (45 loc) · 877 Bytes
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
{
"name": "datingvip/common",
"type": "library",
"description": "Common helpers and classes for ICanBoogie",
"keywords": [ "toolkit" ],
"homepage": "https://icanboogie.org/",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Olivier Laviale",
"email": "olivier.laviale@gmail.com",
"homepage": "https://olvlvl.com/",
"role" : "Developer"
}
],
"support": {
"issues": "https://github.com/ICanBoogie/Common/issues",
"source": "https://github.com/ICanBoogie/Common"
},
"config": {
"sort-packages": true
},
"require": {
"php": ">=7.1",
"ext-mbstring": "*"
},
"require-dev": {
"phpstan/phpstan": "^0.12.92",
"phpunit/phpunit": "^7.5|^9.5"
},
"autoload": {
"psr-4": {
"ICanBoogie\\": "lib"
},
"files": [
"bootstrap.php",
"lib/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\ICanBoogie\\": "tests"
}
}
}