-
-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.63 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.63 KB
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
{
"name": "phparkitect/phparkitect",
"description": "Enforce architectural constraints in your PHP applications",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Pietro Campagnano",
"email": "hello@pietro.camp"
},
{
"name": "Patrick Luca Fazzi",
"email": "patrick91@live.it"
},
{
"name": "Alessandro Minoccheri",
"email": "alessandro.minoccheri@gmail.com"
},
{
"name": "Michele Orselli",
"email": "michele.orselli@gmail.com"
}
],
"require": {
"php": "^8.0",
"ext-json": "*",
"nikic/php-parser": "~5",
"ondram/ci-detector": "^4.2",
"phpstan/phpdoc-parser": "^1.2|^2.0",
"symfony/console": "^5.4|^6.0|^7.0|^8.0",
"symfony/finder": "^5.4|^6.0|^7.0|^8.0",
"webmozart/assert": "^1.12|^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.94",
"mikey179/vfsstream": "^1.6",
"phpspec/prophecy": "^1.10",
"phpspec/prophecy-phpunit": "^2.5",
"phpunit/phpunit": "^9.6|^10.0|^11.0",
"roave/security-advisories": "dev-master",
"symfony/process": "^5.4|^6.0|^7.0|^8.0",
"symfony/var-dumper": "^5.4|^6.0|^7.0|^8.0"
},
"autoload": {
"psr-4": {
"Arkitect\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Arkitect\\Tests\\": "tests/"
}
},
"config": {
"bin-dir": "bin",
"sort-packages": true
},
"bin": [
"bin-stub/phparkitect"
]
}