-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
43 lines (42 loc) · 1.22 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
42
43
{
"name": "slotmachine/slotmachine",
"type": "library",
"description": "A dynamic page content container for PHP 5.3. Designed to power landing pages and make webpage prototypes",
"keywords": [ "container", "marketing", "prototyping", "dynamic", "landing pages", "advertising", "dependency injection" ],
"homepage": "http://github.com/archfizz/slotmachine",
"license": "MIT",
"authors": [
{
"name": "Adam Elsodaney",
"email": "[email protected]",
"homepage": "http://archfizz.org",
"role": "Developer"
}
],
"require": {
"php": ">=5.3.3",
"symfony/http-foundation": ">=2.1.0,<8.0",
"pimple/pimple": ">=1.1.0,<4.0"
},
"require-dev": {
"symfony/yaml": ">=2.1",
"phpunit/phpunit": ">=3.7"
},
"config": {
"bin-dir": "bin"
},
"suggest": {
"symfony/yaml": "For easy to read configuration of the SlotMachine"
},
"autoload": {
"psr-4": { "SlotMachine\\": "src" }
},
"autoload-dev": {
"psr-4": { "tests\\SlotMachine\\": "tests/SlotMachine" }
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}