Skip to content

Commit 4064aac

Browse files
committed
First commit
0 parents  commit 4064aac

File tree

4 files changed

+819
-0
lines changed

4 files changed

+819
-0
lines changed

.gitignore

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# Created by .gitignore support plugin (hsz.mobi)
2+
### JetBrains template
3+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm
4+
5+
*.iml
6+
7+
## Directory-based project format:
8+
.idea/
9+
# if you remove the above rule, at least ignore the following:
10+
11+
# User-specific stuff:
12+
# .idea/workspace.xml
13+
# .idea/tasks.xml
14+
# .idea/dictionaries
15+
16+
# Sensitive or high-churn files:
17+
# .idea/dataSources.ids
18+
# .idea/dataSources.xml
19+
# .idea/sqlDataSources.xml
20+
# .idea/dynamic.xml
21+
# .idea/uiDesigner.xml
22+
23+
# Gradle:
24+
# .idea/gradle.xml
25+
# .idea/libraries
26+
27+
# Mongo Explorer plugin:
28+
# .idea/mongoSettings.xml
29+
30+
## File-based project format:
31+
*.ipr
32+
*.iws
33+
34+
## Plugin-specific files:
35+
36+
# IntelliJ
37+
out/
38+
39+
# mpeltonen/sbt-idea plugin
40+
.idea_modules/
41+
42+
# JIRA plugin
43+
atlassian-ide-plugin.xml
44+
45+
# Crashlytics plugin (for Android Studio and IntelliJ)
46+
com_crashlytics_export_strings.xml
47+
crashlytics.properties
48+
crashlytics-build.properties
49+
50+
51+
/app/cache/*
52+
/app/logs/*
53+
/app/*.cache
54+
/app/config/parameters*.yml
55+
/vendor

SoilGearmanHttpEndpointBundle.php

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?php
2+
/**
3+
* Created by PhpStorm.
4+
* User: fliak
5+
* Date: 5.2.15
6+
* Time: 13.54
7+
*/
8+
9+
namespace Soil\QueueHttpEndpointBundle;
10+
11+
use Symfony\Component\HttpKernel\Bundle\Bundle;
12+
13+
class SoilQueueHttpEndpointBundle extends Bundle {
14+
15+
}

composer.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "soil/queue-http-endpoint-bundle",
3+
"version": "0.0.2",
4+
"minimum-stability": "dev",
5+
"dist": {
6+
"url": "https://github.com/soilby/queue-http-endpoint-bundle",
7+
"type": "vcs"
8+
},
9+
"autoload": {
10+
"psr-4": {
11+
"Soil\\QueueHttpEndpointBundle\\": "./"
12+
}
13+
},
14+
"require": {
15+
"php": ">=5.4",
16+
"symfony/symfony": "2.6.*",
17+
"soil/event-component": "dev-master"
18+
}
19+
}

0 commit comments

Comments
 (0)