-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 761 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 761 Bytes
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
{
"name": "taknone/bootstrapper",
"homepage": "https://liveproto.dev",
"description": "Composer plugin to set up LiveProto library requirements - runs tasks on install / update and autoload dump",
"type": "composer-plugin",
"license": "MIT",
"require": {
"php": ">=8.2",
"taknone/liveproto": "*",
"taknone/attributes": "*",
"amphp/file": "^3.2.0",
"composer-plugin-api": ">=2.5"
},
"autoload": {
"psr-4": {
"Tak\\Liveproto\\": "src/"
},
"files": [
"src/setup.php"
]
},
"extra": {
"class": "Tak\\Liveproto\\Plugin",
"plugin-optional": false
},
"minimum-stability": "stable",
"prefer-stable": true
}