-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
66 lines (66 loc) · 1.99 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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "jeckel-lab/identity-contract",
"description": "Contract and abstract classes to manage identities in Domains",
"type": "library",
"repositories": [
{
"type": "vcs",
"url": "[email protected]:Jeckel-Lab/contract.git"
}
],
"require": {
"php": ">=8.2",
"jeckel-lab/contract": "^2.3",
"ramsey/uuid": "^4.1"
},
"require-dev": {
"phpro/grumphp": "^2.0",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.2",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-strict-rules": "^1.5",
"phpmd/phpmd": "^2.11",
"friendsofphp/php-cs-fixer": "^3.34",
"roave/security-advisories": "dev-latest",
"maglnet/composer-require-checker": "^3||^4",
"phpunit/phpunit": "^10.4",
"infection/infection": "^0.27"
},
"license": "MIT",
"authors": [
{
"name": "Julien Mercier-Rojas",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"JeckelLab\\IdentityContract\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\JeckelLab\\IdentityContract\\": "tests/"
}
},
"config": {
"allow-plugins": {
"infection/extension-installer": true,
"phpro/grumphp": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"cs-fix": "vendor/bin/php-cs-fixer fix --diff --verbose",
"grumphp": "vendor/bin/grumphp run",
"infection": "vendor/bin/infection --show-mutations",
"phpstan": "vendor/bin/phpstan",
"test": "vendor/bin/phpunit --testdox",
"test-coverage": [
"Composer\\Config::disableProcessTimeout",
"XDEBUG_MODE=coverage vendor/bin/phpunit --testdox --coverage-html=.build/coverage"
]
}
}