forked from michaelmoussa/noodle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 833 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
{
"name": "michaelmoussa/noodle",
"description": "A finite state machine written in PHP",
"type": "library",
"homepage": "https://github.com/michaelmoussa/noodle",
"keywords": [
"statemachine",
"state machine",
"finite",
"fsm"
],
"license": "MIT",
"authors": [
{
"name": "Michael Moussa",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0",
"league/event": "^2.1"
},
"require-dev": {
"phpunit/phpunit": "^5.2",
"squizlabs/php_codesniffer": "dev-master as 3.0",
"michaelmoussa/php-coverage-checker": "^1.1"
},
"autoload": {
"psr-4": {
"Noodle\\": [
"src/",
"test/"
]
}
}
}