-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.24 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.24 KB
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": "php-fn/project",
"type": "project",
"homepage": "https://github.com/php-fn/php-fn-project",
"license": "MIT",
"repositories": [
{"type": "path", "url": "resources/vendor/*"}
],
"require": {
"php-fn/php-fn": "dev-master",
"php-fn/invoker": "dev-php-fn-master",
"php": "^7.3|^8.0"
},
"require-dev": {
"doctrine/annotations": "^1",
"symfony/dependency-injection": "^3.4|^4.0|^5.0",
"composer/composer": "^1.0||^2.0",
"php-coveralls/php-coveralls": "^2.1",
"php-fn/test": "dev-master",
"ext-json": "*"
},
"autoload-dev": {
"psr-4": {
"Invoker\\Test\\": "resources/vendor/php-fn-invoker/tests",
"Php\\": [
"resources/vendor/php-fn/tests/Php",
"resources/vendor/php-fn-test/tests/Php"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"phpunit": "phpunit -d error_reporting=22527 --fail-on-warning",
"test": [
"@phpunit resources/vendor/php-fn/tests",
"@phpunit resources/vendor/php-fn-test/tests",
"@phpunit resources/vendor/php-fn-invoker/tests"
]
}
}