-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
53 lines (53 loc) · 1.31 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
49
50
51
52
53
{
"name": "prooph/common",
"description": "Common classes used across prooph packages",
"type": "library",
"authors": [
{
"name": "Alexander Miertsch",
"email": "kontakt@codeliner.ws"
},
{
"name": "Sascha-Oliver Prolic",
"email": "saschaprolic@googlemail.com"
}
],
"keywords": [
"prooph",
"common"
],
"homepage": "http://getprooph.org/",
"license": "BSD-3-Clause",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.4 || ^8.0",
"ramsey/uuid": "4.1.2 || ^4.3",
"beberlei/assert": "^2.7.1 || ^3.0"
},
"require-dev": {
"php-coveralls/php-coveralls": "^2.2",
"phpunit/phpunit": "^9.5.5",
"prooph/bookdown-template": "^0.2.3",
"prooph/php-cs-fixer-config": "^0.5"
},
"autoload": {
"psr-4": {
"Prooph\\Common\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ProophTest\\Common\\": "tests"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "php-cs-fixer fix -v --diff",
"test": "phpunit --colors=always"
}
}