forked from andaniel05/PyramidalTests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 901 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
{
"name": "thenlabs/pyramidal-tests",
"license": "MIT",
"authors": [
{
"name": "Andy Daniel Navarro Taño",
"email": "[email protected]"
}
],
"require": {
"phpunit/phpunit": "9.*",
"thenlabs/components": "^1.1",
"thenlabs/class-builder": "^1.0.8",
"brick/varexporter": "^0.3.2",
"symfony/yaml": ">=4.4",
"doctrine/annotations": "^1.13"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.2"
},
"autoload": {
"psr-4": {
"ThenLabs\\PyramidalTests\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ThenLabs\\PyramidalTests\\Tests\\": "tests/"
}
},
"bin": [
"bin/pyramidal"
],
"scripts": {
"fix": "./vendor/bin/php-cs-fixer fix",
"test": "./vendor/bin/phpunit"
}
}