forked from tcs-udemy/introduction-to-unit-testing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·33 lines (33 loc) · 900 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
{
"name": "tsawler/acme",
"authors": [
{
"name": "Trevor Sawler",
"email": "[email protected]"
}
],
"require": {
"filp/whoops": "2.0.*",
"vlucas/phpdotenv": "~1.1",
"illuminate/database": "5.1.*",
"altorouter/altorouter": "1.1.0",
"respect/validation": "~1.0",
"duncan3dc/blade": "2.2.*",
"robmorgan/phinx": "^0.4.5",
"symfony/var-dumper": "^2.7",
"cocur/slugify": "^1.2",
"swiftmailer/swiftmailer": "^5.4",
"kunststube/csrfp": "^0.1.0",
"sunra/php-simple-html-dom-parser": "v1.5.0",
"rdlowrey/auryn": "1.1.*",
"fabpot/goutte": "^3.1"
},
"autoload": {
"psr-4": { "Acme\\": "src/" }
},
"require-dev": {
"phpunit/phpunit": "^5.1",
"phpunit/php-invoker": "^1.1",
"phpunit/dbunit": "^2.0"
}
}