-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
composer.json
62 lines (62 loc) · 1.67 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
{
"name": "phparkitect/phparkitect",
"description": "Enforce architectural constraints in your PHP applications",
"type": "library",
"license": "MIT",
"version": "0.3.33",
"authors": [
{
"name": "Pietro Campagnano",
"email": "[email protected]"
},
{
"name": "Patrick Luca Fazzi",
"email": "[email protected]"
},
{
"name": "Alessandro Minoccheri",
"email": "[email protected]"
},
{
"name": "Michele Orselli",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1|^8",
"symfony/finder": "^3.0|^4.0|^5.0|^6.0|^7.0",
"symfony/event-dispatcher": "^3.0|^4.0|^5.0|^6.0|^7.0",
"symfony/console": "^3.0|^4.0|^5.0|^6.0|^7.0",
"symfony/polyfill-php80": "^1.20",
"nikic/php-parser": "~4",
"webmozart/assert": "^1.9",
"ext-json": "*",
"phpstan/phpdoc-parser": "^1.2",
"ondram/ci-detector": "^4.1"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"symfony/var-dumper": "^3.0|^4.0|^5.0|^6.0|^7.0",
"vimeo/psalm": "^4.6",
"friendsofphp/php-cs-fixer": "^3.0",
"phpunit/phpunit": "^7.5|^9.0|^10.0",
"mikey179/vfsstream": "^1.6",
"phpspec/prophecy": "^1.10"
},
"autoload": {
"psr-4": {
"Arkitect\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Arkitect\\Tests\\": "tests/"
}
},
"config": {
"bin-dir": "bin"
},
"bin": [
"bin-stub/phparkitect"
]
}