-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 1000 Bytes
/
Copy pathcomposer.json
File metadata and controls
35 lines (35 loc) · 1000 Bytes
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
{
"name": "freshp/example-test-php-core-methods",
"description": "this package contains an example to test php core methods",
"type": "library",
"autoload": {
"psr-4": {
"FreshP\\ExampleTestPhpCoreMethods\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FreshP\\ExampleTestPhpCoreMethods\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.3"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"tm/tooly-composer-script": "^1.4"
},
"scripts": {
"post-install-cmd": "Tooly\\ScriptHandler::installPharTools",
"post-update-cmd": "Tooly\\ScriptHandler::installPharTools"
},
"extra": {
"tools": {
"phpunit": {
"url": "https://phar.phpunit.de/phpunit-8.4.3.phar",
"sign-url": "https://phar.phpunit.de/phpunit-8.4.3.phar.asc",
"force-replace": true
}
}
}
}