-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 946 Bytes
/
composer.json
File metadata and controls
40 lines (40 loc) · 946 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
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "jpc/design-pattern",
"description": "Simple Design Patter integration",
"type": "library",
"keywords": [
"DesignPattern",
"Singleton",
"Multiton",
"Trait"
],
"homepage": "https://github.com/JoffreyPoreeCoding/DesignPattern",
"license": "GPL-3.0",
"authors": [
{
"name": "Joffrey Poree",
"email": "contact@joffreyporee.com"
}
],
"support": {
"email": "contact@joffreyporee.com",
"issues": "https://github.com/JoffreyPoreeCoding/DesignPattern/issues"
},
"require": {
"php": ">=5.4"
},
"require-dev": {
"symfony/var-dumper": "*",
"phpunit/phpunit": "^9.4"
},
"autoload": {
"psr-4": {
"JPC\\DesignPattern\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JPC\\DesignPattern\\Tests\\": "tests/"
}
}
}