-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 1.11 KB
/
composer.json
File metadata and controls
37 lines (37 loc) · 1.11 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
{
"name": "aggrego/basic-block",
"license": "MIT",
"authors": [
{
"name": "Tomasz Kunicki"
}
],
"type": "library",
"require": {
"php": ">=8.0"
},
"require-dev": {
"aggrego/core": "dev-master",
"phpspec/phpspec": "^7.1",
"symplify/monorepo-builder": "^9.4",
"wikimedia/composer-merge-plugin": "^2.0"
},
"autoload": {
"exclude-from-classmap": [
"packages/Aggrego/Component/BasicBlockComponent/CoreDomainPlugin/spec/"
],
"psr-4": {
"Aggrego\\Component\\BasicBlockComponent\\CoreDomainPlugin\\": "packages/Aggrego/Component/BasicBlockComponent/CoreDomainPlugin/src/"
}
},
"autoload-dev": {
"psr-4": {
"spec\\Aggrego\\Component\\BasicBlockComponent\\CoreDomainPlugin\\": "packages/Aggrego/Component/BasicBlockComponent/CoreDomainPlugin/spec/"
}
},
"replace": {
"aggrego/basic-block-component-core-domain-plugin": "self.version",
"aggrego/basic-block-deployment": "self.version"
},
"minimum-stability": "dev"
}