-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
41 lines (41 loc) · 1.24 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
{
"name": "thecodingmachine/yaco",
"type": "library",
"description": "YACO (Yet Another COmpiler) is a PHP tool that generates a PHP container based on entry definitions.",
"license": "MIT",
"autoload": {
"psr-4": {
"TheCodingMachine\\Yaco\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TheCodingMachine\\Yaco\\": "tests/"
}
},
"require": {
"php": ">=7.1",
"container-interop/definition-interop": "~0.2.0",
"container-interop/container-interop": "^1.0",
"jeremeamia/superclosure": "^2.0",
"mouf/picotainer": "^1.0",
"thecodingmachine/service-provider-registry": "^3.0",
"container-interop/service-provider": "^0.4"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/xhuberty/assembly",
"no-api": true
}
],
"require-dev": {
"phpunit/phpunit": "~4.5",
"mnapoli/assembly": "dev-callable-service-providers as dev-master",
"satooshi/php-coveralls": "^1.0",
"container-interop/definition-interop-tests": "dev-master",
"phpstan/phpstan": "^0.8"
},
"minimum-stability": "dev",
"prefer-stable": true
}