-
Notifications
You must be signed in to change notification settings - Fork 59
/
composer.json
executable file
·51 lines (50 loc) · 1.11 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "myabakus/teamworkpm",
"description": "PHP wrapper for Teamwork.com API",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Loduis Madariaga",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"zircote/swagger-php": "^4.11"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"psy/psysh": "^0.12.4",
"spatie/phpunit-snapshot-assertions": "^4.2",
"symfony/var-dumper": "^6.0",
"vimeo/psalm": "^5.2",
"vlucas/phpdotenv": "^5.6"
},
"autoload": {
"psr-4": {
"TeamWorkPm\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"TeamWorkPm\\Tests\\": "tests/"
},
"files": [
"tests/functions.php"
]
},
"extra": {
"branch-alias": {
"dev-master": "2.0.0-dev"
}
},
"config": {
"sort-packages": true,
"preferred-install": "dist",
"platform-check": true
}
}