-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 602 Bytes
/
Copy pathcomposer.json
File metadata and controls
28 lines (28 loc) · 602 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": "byjg/singleton-pattern",
"description": "A lightweight PHP implementation of the Design Pattern Singleton using trait.",
"autoload": {
"psr-4": {
"ByJG\\DesignPattern\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": ">=8.3 <8.6"
},
"require-dev": {
"phpunit/phpunit": "^10.5|^11.5",
"vimeo/psalm": "^5.9|^6.13"
},
"scripts": {
"test": "vendor/bin/phpunit",
"psalm": "vendor/bin/psalm --threads=1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT"
}