-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
33 lines (33 loc) · 894 Bytes
/
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
{
"name": "pyncer/snyppet",
"type": "library",
"description": "Allows for managing and installing small chunks of reusable code.",
"homepage": "https://pyncer.com/snyppet",
"license": "Unlicense",
"require": {
"php": ">=8.1",
"psr/http-server-middleware": "^1.0.1",
"pyncer/core": "^1.0.1",
"pyncer/data": "^1.0.1",
"pyncer/database": "^1.0",
"pyncer/iterable": "^1.1.2",
"pyncer/http": "^1.1.3"
},
"require-dev": {
"phpstan/phpstan": "^1.10"
},
"autoload": {
"psr-4": {
"Pyncer\\Snyppet\\": "src/"
}
},
"support": {
"issues": "https://github.com/pyncerrc/pyncer-snyppet/issues",
"source": "https://github.com/pyncerrc/pyncer-snyppet"
},
"extra" : {
"branch-alias" : {
"dev-main" : "1.2-dev"
}
}
}