-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
40 lines (40 loc) · 1001 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
34
35
36
37
38
39
40
{
"name": "tholabs/creator",
"description": "creator is a simple PHP dependency injection that works with typehints",
"license": "MIT",
"provide": {
"psr/container-implementation": "1.0.0"
},
"authors": [
{
"name": "David Beuchert",
"email": "[email protected]",
"homepage": "https://github.com/filecage"
}
],
"support": {
"source": "https://github.com/filecage/creator",
"issues": "https://github.com/filecage/creator/issues"
},
"require": {
"php": ">=7.2",
"tholabs/creator-interfaces": "^1.1",
"psr/container": "^1.0 || ^2.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5.21"
},
"autoload": {
"psr-4": {
"Creator\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"Creator\\Tests\\": "tests/"
}
},
"scripts": {
"test": "./vendor/bin/phpunit --testdox"
}
}