-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
40 lines (40 loc) · 956 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
{
"name": "thenlabs/class-builder",
"description": "Dynamic management of classes, traits and interfaces in PHP.",
"keywords": [
"builder",
"builder-pattern",
"php-class",
"php-classes",
"php-builder"
],
"license": "MIT",
"authors": [
{
"name": "Andy Daniel Navarro Taño",
"email": "andaniel05@gmail.com"
}
],
"require": {
"php": ">=7.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.2",
"thenlabs/pyramidal-tests": "2.0.x-dev",
"doctrine/annotations": "^1.8"
},
"autoload": {
"psr-4": {
"ThenLabs\\ClassBuilder\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ThenLabs\\ClassBuilder\\Tests\\": "tests/"
}
},
"scripts": {
"fix": "./vendor/bin/php-cs-fixer fix",
"test": "./vendor/bin/pyramidal"
}
}