-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 928 Bytes
/
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
{
"name": "cubicl/php-sorting",
"description": "A sorting library for PHP",
"keywords": ["array", "sorting"],
"homepage": "https://github.com/cubicldev/php-sorting",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Christian Blank",
"email": "christian@cubicl.de",
"homepage": "https://cubicl.de"
}
],
"scripts": {
"check": ["@analyze", "@tests"],
"tests": "phpunit tests",
"analyze": "phpstan analyse --level max src"
},
"require-dev": {
"phpunit/phpunit": "^9.6.8",
"phpstan/phpstan": "^1.10.15",
"phpspec/prophecy-phpunit": "^2.0.2"
},
"autoload": {
"psr-4": {
"Cubicl\\Sorting\\": [
"src"
],
"Cubicl\\Sorting\\Test\\": [
"tests"
]
}
}
}