-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
41 lines (41 loc) · 1.05 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": "thenlabs/components",
"description": "A custom implementation of the Composite pattern in PHP for create component types with useful functionalities.",
"keywords": [
"composite",
"composite-pattern",
"component-architecture",
"component-based"
],
"license": "MIT",
"authors": [
{
"name": "Andy Daniel Navarro Taño",
"email": "[email protected]"
}
],
"require": {
"php" : ">=7.2",
"composer/semver": ">=1.5",
"symfony/event-dispatcher": ">=4.4",
"doctrine/annotations": "^1.6"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.2",
"thenlabs/pyramidal-tests": "2.0.x-dev"
},
"autoload": {
"psr-4": {
"ThenLabs\\Components\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ThenLabs\\Components\\Tests\\": "tests/"
}
},
"scripts": {
"fix": "./vendor/bin/php-cs-fixer fix",
"test": "./vendor/bin/pyramidal"
}
}