-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 984 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
41
{
"name": "dakujem/wire-genie",
"description": "Autowiring Tool & Dependency Provider. Wire with genie powers.",
"license": "Unlicense",
"authors": [
{
"name": "Andrej Rypák",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"psr/container": "^1"
},
"require-dev": {
"dakujem/sleeve": "^1",
"pimple/pimple": "^3.4",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Dakujem\\Wire\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dakujem\\Wire\\Tests\\": "tests/"
},
"files": ["tests/testHelperClasses.php"]
},
"scripts": {
"test": "@test:local",
"test:local": "phpunit tests",
"test:ci": "phpunit tests"
},
"scripts-descriptions": {
"test": "Run application tests. (defaults to local tests)",
"test:local": "Run application tests with local configuration.",
"test:ci": "Run application tests, provide configuration options as needed."
}
}