This repository has been archived by the owner on Mar 1, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
monorepo-builder.yml
93 lines (89 loc) · 5.56 KB
/
monorepo-builder.yml
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
parameters:
merge_sections:
- 'require'
- 'require-dev'
- 'autoload'
- 'autoload-dev'
- 'repositories'
package_directories:
- 'src/Viserio/Bridge'
- 'src/Viserio/Component'
- 'src/Viserio/Contract'
- 'src/Viserio/Provider'
package_alias_format: '<major>.<minor>.x-dev'
# for "merge" command
data_to_append:
require-dev:
narrowspark/coding-standard: '^3.3.0'
narrowspark/testing-helper: '^8.0.2'
phpunit/phpunit: '8.2.*'
slam/phpstan-extensions: '^4.0.0'
# for "split" command
directories_to_repositories:
src/Viserio/Bridge/Monolog: '[email protected]:viserio/monolog-bridge.git'
src/Viserio/Bridge/Phpstan: '[email protected]:viserio/phpstan-bridge.git'
src/Viserio/Bridge/Twig: '[email protected]:viserio/twig-bridge.git'
src/Viserio/Component/Bus: '[email protected]:viserio/bus.git'
src/Viserio/Component/Cache: '[email protected]:viserio/cache.git'
src/Viserio/Component/Config: '[email protected]:viserio/config.git'
src/Viserio/Component/Console: '[email protected]:viserio/console.git'
src/Viserio/Component/Container: '[email protected]:viserio/container.git'
src/Viserio/Component/Cookie: '[email protected]:viserio/cookie.git'
src/Viserio/Component/Cron: '[email protected]:viserio/cron.git'
src/Viserio/Component/Events: '[email protected]:viserio/events.git'
src/Viserio/Component/Exception: '[email protected]:viserio/exception.git'
src/Viserio/Component/Filesystem: '[email protected]:viserio/filesystem.git'
src/Viserio/Component/Finder: '[email protected]:viserio/finder.git'
src/Viserio/Component/Foundation: '[email protected]:viserio/foundation.git'
src/Viserio/Component/Http: '[email protected]:viserio/http.git'
src/Viserio/Component/HttpFactory: '[email protected]:viserio/http-factory.git'
src/Viserio/Component/HttpFoundation: '[email protected]:viserio/http-foundation.git'
src/Viserio/Component/Log: '[email protected]:viserio/log.git'
src/Viserio/Component/Mail: '[email protected]:viserio/mail.git'
src/Viserio/Component/Manager: '[email protected]:viserio/manager.git'
src/Viserio/Component/Pagination: '[email protected]:viserio/pagination.git'
src/Viserio/Component/Parser: '[email protected]:viserio/parser.git'
src/Viserio/Component/Path: '[email protected]:viserio/path.git'
src/Viserio/Component/Pipeline: '[email protected]:viserio/pipeline.git'
src/Viserio/Component/Profiler: '[email protected]:viserio/profiler.git'
# src/Viserio/Component/Queue: '[email protected]:viserio/queue.git'
src/Viserio/Component/Routing: '[email protected]:viserio/routing.git'
src/Viserio/Component/Session: '[email protected]:viserio/session.git'
src/Viserio/Component/Support: '[email protected]:viserio/support.git'
src/Viserio/Component/Translation: '[email protected]:viserio/translation.git'
src/Viserio/Component/Validation: '[email protected]:viserio/validation.git'
src/Viserio/Component/View: '[email protected]:viserio/view.git'
src/Viserio/Component/WebServer: '[email protected]:viserio/web-server.git'
src/Viserio/Provider/Debug: '[email protected]:viserio/debug-provider.git'
src/Viserio/Provider/Framework: '[email protected]:viserio/framework-provider.git'
src/Viserio/Provider/Twig: '[email protected]:viserio/twig-provider.git'
src/Viserio/Contract: '[email protected]:viserio/contract.git'
src/Viserio/Contract/Bus: '[email protected]:viserio/bus-contract.git'
src/Viserio/Contract/Cache: '[email protected]:viserio/cache-contract.git'
src/Viserio/Contract/Config: '[email protected]:viserio/config-contract.git'
src/Viserio/Contract/Console: '[email protected]:viserio/console-contract.git'
src/Viserio/Contract/Container: '[email protected]:viserio/container-contract.git'
src/Viserio/Contract/Cookie: '[email protected]:viserio/cookie-contract.git'
src/Viserio/Contract/Cron: '[email protected]:viserio/cron-contract.git'
src/Viserio/Contract/Events: '[email protected]:viserio/events-contract.git'
src/Viserio/Contract/Exception: '[email protected]:viserio/exception-contract.git'
src/Viserio/Contract/Filesystem: '[email protected]:viserio/filesystem-contract.git'
src/Viserio/Contract/Finder: '[email protected]:viserio/finder-contract.git'
src/Viserio/Contract/Foundation: '[email protected]:viserio/foundation-contract.git'
src/Viserio/Contract/Http: '[email protected]:viserio/http-contract.git'
src/Viserio/Contract/HttpFactory: '[email protected]:viserio/http-factory-contract.git'
src/Viserio/Contract/HttpFoundation: '[email protected]:viserio/http-foundation-contract.git'
src/Viserio/Contract/Log: '[email protected]:viserio/log-contract.git'
src/Viserio/Contract/Mail: '[email protected]:viserio/mail-contract.git'
src/Viserio/Contract/Manager: '[email protected]:viserio/manager-contract.git'
src/Viserio/Contract/Pagination: '[email protected]:viserio/pagination-contract.git'
src/Viserio/Contract/Parser: '[email protected]:viserio/parser-contract.git'
src/Viserio/Contract/Pipeline: '[email protected]:viserio/pipeline-contract.git'
src/Viserio/Contract/Profiler: '[email protected]:viserio/profiler-contract.git'
src/Viserio/Contract/Routing: '[email protected]:viserio/routing-contract.git'
src/Viserio/Contract/Session: '[email protected]:viserio/session-contract.git'
src/Viserio/Contract/Support: '[email protected]:viserio/support-contract.git'
src/Viserio/Contract/Translation: '[email protected]:viserio/translation-contract.git'
src/Viserio/Contract/Validation: '[email protected]:viserio/validation-contract.git'
src/Viserio/Contract/View: '[email protected]:viserio/view-contract.git'
src/Viserio/Contract/WebServer: '[email protected]:viserio/web-server-contract.git'