-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 959 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 959 Bytes
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
{
"name": "arkschools/data-input-sheets",
"description": "Library that builds a data sheet from a spine class and a yml configuration file",
"license": "MIT",
"type": "package",
"require": {
"keyvanakbary/slugifier": "^4.0",
"symfony/yaml": "~2.0|~3.0",
"symfony/options-resolver": "~2.0|~3.0",
"symfony/security": "~2.0|~3.0"
},
"require-dev": {
"phpspec/phpspec": "^3.1",
"phpunit/phpunit": "^5.6",
"symfony/config": "~2.4|~3.0",
"symfony/dependency-injection": "~2.4|~3.0",
"symfony/http-kernel": "~2.4|~3.0",
"sensio/framework-extra-bundle": "^3.0",
"doctrine/orm": "~2.2,>=2.2.3,<2.5",
"doctrine/dbal": "2.5.x-dev",
"doctrine/doctrine-bundle": "~1.2",
"twig/twig": "~1.0"
},
"autoload": {
"psr-4": { "Arkschools\\DataInputSheets\\": "src/" }
},
"config": {
"bin-dir": "bin"
}
}